package solutions import ( "sort" ) func SortIntegerTable(table []int) { sort.Ints(table) }