私はGoで整数スライスを逆ソートしようとしています。整数のスライスを逆順にソートするにはどうすればよいですか?
example := []int{1,25,3,5,4}
sort.Ints(example) // this will give me a slice sorted from 1 to the highest number
どのようにソートして最高から最低にするか?私はこの
sort.Sort(sort.Reverse(sort.Ints(keys)))
ソースしようとしている[25 5 4 3 1]
:http://golang.org/pkg/sort/#Reverse
しかし、私は
# command-line-arguments
./Roman_Numerals.go:31: sort.Ints(keys) used as value