我知道我们可以使用
sort.Sort(sort.Reverse(sort.IntSlice(example)))
对数组进行排序。
但是我怎样才能得到数组的索引呢?
例如
example := []int{1, 25, 3, 5, 4}
我想得到输出:1, 3, 5, 4, 2
相关分类