-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork_break_test.go
51 lines (49 loc) · 1.07 KB
/
work_break_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
package grind75
import "testing"
func Test_wordBreak(t *testing.T) {
type args struct {
s string
wordDict []string
}
tests := []struct {
name string
args args
want bool
}{
{
args: args{
s: "leetcode",
wordDict: []string{"leet", "code"},
},
want: true,
},
{
args: args{
s: "applepenapple",
wordDict: []string{"apple", "pen"},
},
want: true,
},
{
args: args{
s: "catsandog",
wordDict: []string{"cats", "dog", "sand", "and", "cat"},
},
want: false,
},
{
args: args{
s: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab",
wordDict: []string{"a", "aa", "aaa", "aaaa", "aaaaa", "aaaaaa", "aaaaaaa", "aaaaaaaa", "aaaaaaaaa", "aaaaaaaaaa"},
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := wordBreak(tt.args.s, tt.args.wordDict); got != tt.want {
t.Errorf("wordBreak() = %v, want %v", got, tt.want)
}
})
}
}