Skip to content

Instantly share code, notes, and snippets.

@cipepser
Created January 18, 2017 15:00
Show Gist options
  • Save cipepser/d11b9d2a8bc434492fb24b397e4bff01 to your computer and use it in GitHub Desktop.
Save cipepser/d11b9d2a8bc434492fb24b397e4bff01 to your computer and use it in GitHub Desktop.
package MySort
import (
"testing"
)
func BenchmarkBubbleSort(b *testing.B) {
for i:= 0; i <b.N; i++ {
BubbleSort(a)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment