Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
package main import ( "fmt" "sort" ) func main() { slice := []int{4, 6, 12, 100, 150, 500, 2000} fmt.Println(sort.IntsAreSorted(slice)) } /* run: true */