摘要:
CodeIgniter 运行报错 Fatal error: Uncaught Error: Call to undefined function CodeIgniter\locale_set_default() in /var/www/CodeIgniter4/system/CodeIgniter. 阅读全文
摘要:
leetcode 1. 两数之和 (Golang) func twoSum(nums []int, target int) []int { flag := make([]int, len(nums)) ans := make([]int, 0) for i, v := range nums { fo 阅读全文
摘要:
通过 fmt.Scanln() 来获取同一行的数据,使用空格来分别不同的数据 参考案例: package main import ( "fmt" ) func main() { var a, b int fmt.Scanln(&a, &b) fmt.Print(a, b, a + b) } 阅读全文