-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlongestPalindrome_test.go
51 lines (47 loc) · 1021 Bytes
/
longestPalindrome_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 leetcode
import (
"fmt"
"testing"
)
func TestLongestPalindrome(t *testing.T) {
d := []string{
"babad",
"cbbd",
"aaaa",
}
wants := []string{
"aba",
"bb",
"aaaa",
}
wants2 := []string{
"bab",
"bb",
"aaaa",
}
for k, v := range d {
str := fmt.Sprintf("LongestPalindrome, input s %v, want: %v", v, wants[k])
if wants[k] != wants2[k] {
str = fmt.Sprintf("%s or %s", str, wants2[k])
}
t.Log(str)
r := longestPalindrome(v)
if r == wants[k] || r == wants2[k] {
t.Log("LongestPalindrome is ok")
} else {
t.Error("LongestPalindrome is not ok, result:", fmt.Sprintf("%v", r))
}
r = longestPalindrome1(v)
if r == wants[k] || r == wants2[k] {
t.Log("LongestPalindrome1 is ok")
} else {
t.Error("LongestPalindrome1 is not ok, result:", fmt.Sprintf("%v", r))
}
r = longestPalindrome2(v)
if r == wants[k] || r == wants2[k] {
t.Log("LongestPalindrome2 is ok")
} else {
t.Error("LongestPalindrome2 is not ok, result:", fmt.Sprintf("%v", r))
}
}
}