1 2 3 4 5 6 7 8 9 10 11 12
package sort import ( "algorithms/ds" "testing" ) func BenchmarkSelection1000(b *testing.B) { a := ds.RandomIntegers(1000, 1000) b.ResetTimer() Selection(a) }