-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path125. Valid Palindrome.go
79 lines (66 loc) · 1.22 KB
/
125. Valid Palindrome.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Runtime0 ms
// Beats
// 100%
// Memory2.6 MB
// Beats
// 100%
package main
import (
"fmt"
"strings"
// "unicode"
)
func main() {
s:= "A man, a plan, a canal: Panama"
// s:="race a car"
// s:="0P"
// s:=" "
fmt.Println("isPalindrome(s) : ", isPalindrome(s))
}
// func isPalindrome(s string) bool {
// s= strings.ToLower(s)
// for _,j:= range s {
// if !unicode.IsLetter(j) && !unicode.IsDigit(j) {
// s= strings.Replace(s, string(j), "", -1)
// }
// }
// l:=(len(s)/2)+1
// if len(s)%2==0{
// l=(len(s)/2)
// }
// for i,j:=0,len(s)-1 ; i<l;{
// if s[i]!=s[j]{
// return false
// }
// i++
// j--
// }
// return true
// }
func isPalindrome(s string) bool {
start:= 0
end:= len(s)-1
for start<end {
if !valid(s[start]) {
start++
continue
}
if !valid(s[end]) {
end--
continue
}
if !strings.EqualFold(string(s[start]) ,string(s[end])) {
return false
}else {
start++
end--
}
}
return true
}
func valid(s byte)bool{
if (s>='a'&& s<='z' ) || (s>='A' && s<='Z') || (s>='0'&& s<='9'){
return true
}
return false
}