摘要: package main import ( "fmt" "sort" ) type IntSlice []int func main() { int1 := IntSlice{3, 4, 1, 2, 9, 0, 8, 2, 6} sort.Sort(int1) fmt.Println(int1) } 阅读全文
posted @ 2023-03-22 21:41 巴达克 阅读(94) 评论(0) 推荐(0) 编辑