0
5
llucycodes42
The code benchmarks a function by running it multiple times.
Shortcut: bf
func Benchmark(b *testing.B) {
for i := 0; i < b.N; i++ {
}
}
0
5
llucycodes42
The code benchmarks a function by running it multiple times.
Shortcut: bf
func Benchmark(b *testing.B) {
for i := 0; i < b.N; i++ {
}
}