我正在尝试对 Go 中的整数切片进行反向排序。
example := []int{1,25,3,5,4}
sort.Ints(example) // this will give me a slice sorted from 1 to the highest number
我如何对其进行排序以使其从最高到最低?所以 [25 5 4 3 1]
我试过这个
sort.Sort(sort.Reverse(sort.Ints(keys)))
来源: http: //golang.org/pkg/sort/#Reverse
但是,我收到以下错误
# command-line-arguments
./Roman_Numerals.go:31: sort.Ints(keys) used as value