我嘗試使用下面的函數排序INTS
func sortArray(array [100]int) [100]int {
var sortedArray = array
sort.Sort(sort.Ints(sortedArray))
return sortedArray
}
排序int數組,並得到以下錯誤:
.\helloworld.go:22: cannot use sortedArray (type [100]int) as type []int in argument to sort.Ints .\helloworld.go:22: sort.Ints(sortedArray) used as value
我試圖找出圍棋和我陷入了這個問題。
'sort.Ints'(確實是'sort.Sort')期待一個切片,並且您給它一個數組。 –