-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path125.py
45 lines (42 loc) · 1.08 KB
/
125.py
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
class Solution:
# @param {string} s
# @return {boolean}
def isPalindrome(self, s):
s = str(s)
s = s.strip()
s = s.lower()
s = filter(str.isalnum, s)
slen = len(s)
if slen == 0:
return True
else:
for i,j in zip(range(0,slen),range(slen-1,-1,-1)):
if i > j:
break
a = s[i]
b = s[j]
if a != b:
return False
return True
# new solution
def isPalindrome(self, s):
n = len(s)
i = 0
j = n-1
while i < j:
while i < j and (not s[i].isalnum()):
i += 1
while i < j and ( not s[j].isalnum()):
j -= 1
if s[i].lower() != s[j].lower():
return False
else:
i += 1
j -= 1
return True
s1 = "A man, a plan, a canal: Panama"
s2 = "race a car"
sol = Solution()
s3 = "1a2"
print str(s3)
print sol.isPalindrome(s2)