-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsolution_test.go
47 lines (39 loc) · 935 Bytes
/
solution_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
package leetcode
import (
"fmt"
"testing"
)
func TestIsPalindrome(t *testing.T) {
var x string
var ret bool
ret = false
x = "race a car"
fmt.Printf("x = %v ret = %v\n", x, isPalindrome(x))
if isPalindrome(x) != ret {
t.Fatalf("case fails: %v\n", ret)
}
ret = true
x = ".,"
fmt.Printf("x = %v ret = %v\n", x, isPalindrome(x))
if isPalindrome(x) != ret {
t.Fatalf("case fails: %v\n", ret)
}
ret = true
x = "A man, a plan, a canal: Panama"
fmt.Printf("x = %v ret = %v\n", x, isPalindrome(x))
if isPalindrome(x) != ret {
t.Fatalf("case fails: %v\n", ret)
}
ret = true
x = "......a....."
fmt.Printf("x = %v ret = %v\n", x, isPalindrome(x))
if isPalindrome(x) != ret {
t.Fatalf("case fails: %v\n", ret)
}
ret = false
x = "a.b,."
fmt.Printf("x = %v ret = %v\n", x, isPalindrome(x))
if isPalindrome(x) != ret {
t.Fatalf("case fails: %v\n", ret)
}
}