Skip to content

Instantly share code, notes, and snippets.

@cipepser
Created January 21, 2017 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cipepser/c5799874dd907597a619a0f2d60f8c84 to your computer and use it in GitHub Desktop.
Save cipepser/c5799874dd907597a619a0f2d60f8c84 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