현재 접속자
package main import ( "fmt" "sort" ) func main() { a := []int{1, 5, 3, 6} b := []float64{4.2, 5.9, 1.2, 7.9} c := []string{"xxx", "zzz", "kkk"} // int형 오름, 내림 정렬 sort.Sort(sort.IntSlice(a)) fmt.Println(a) sort.Sort(sort.Reverse(sort.IntSlice(a))) fmt.Println(a) // float64형 오름, 내림 정렬 sort.Sort(sort.Float64Slice(b)) fmt.Println(b) sort.Sort(sort.Reverse(sort.Float64Slice(b))) fmt.Println(b) // string형 오름, 내림 정렬 sort.Sort(sort.StringSlice(c)) fmt.Println(c) sort.Sort(sort.Reverse(sort.StringSlice(c))) fmt.Println(c) } 결과 [1 3 5 6] [6 5 3 1] [1.2 4.2 5.9 7.9] [7.9 5.9 4.2 1.2] [kkk xxx zzz] [zzz xxx kkk]