Sorting algorithms/Heapsort: Difference between revisions

m
→‎{{header|Go}}: library change
m ({{omit from|GUISS}})
m (→‎{{header|Go}}: library change)
Line 803:
a := []int{170, 45, 75, -90, -802, 24, 2, 66}
fmt.Println("before:", a)
heapSort(sort.IntArrayIntSlice(a))
fmt.Println("after: ", a)
}
Anonymous user