-
Notifications
You must be signed in to change notification settings - Fork 2
/
wordsearch_test.go
56 lines (52 loc) · 1.17 KB
/
wordsearch_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package wordsearch
import (
"testing"
"github.com/WindomZ/testify/assert"
)
func Test_exist(t *testing.T) {
assert.Equal(t, false, exist([][]byte{}, ""))
assert.Equal(t, false, exist([][]byte{}, "A"))
assert.Equal(t, false, exist([][]byte{{}}, "A"))
assert.Equal(t, true, exist([][]byte{
{'A', 'B', 'C', 'E'},
{'S', 'F', 'C', 'S'},
{'A', 'D', 'E', 'E'},
}, "ABCCED"))
assert.Equal(t, true, exist([][]byte{
{'A', 'B', 'C', 'E'},
{'S', 'F', 'C', 'S'},
{'A', 'D', 'E', 'E'},
}, "SEE"))
assert.Equal(t, false, exist([][]byte{
{'A', 'B', 'C', 'E'},
{'S', 'F', 'C', 'S'},
{'A', 'D', 'E', 'E'},
}, "ABCB"))
}
func Benchmark_exist(b *testing.B) {
b.StopTimer()
b.ReportAllocs()
b.StartTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
exist([][]byte{}, "")
exist([][]byte{}, "A")
exist([][]byte{{}}, "A")
exist([][]byte{
{'A', 'B', 'C', 'E'},
{'S', 'F', 'C', 'S'},
{'A', 'D', 'E', 'E'},
}, "ABCCED")
exist([][]byte{
{'A', 'B', 'C', 'E'},
{'S', 'F', 'C', 'S'},
{'A', 'D', 'E', 'E'},
}, "SEE")
exist([][]byte{
{'A', 'B', 'C', 'E'},
{'S', 'F', 'C', 'S'},
{'A', 'D', 'E', 'E'},
}, "ABCB")
}
})
}