-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathanswer.py
38 lines (29 loc) · 825 Bytes
/
answer.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
#!/usr/bin/env python
#-------------------------------------------------------------------------------
class Solution(object):
def isPalindrome(self, x):
temp = x
digits = 1
# If x is negative
if x < 0:
return False
# Find 1^digits
while temp >= 10:
temp /= 10
digits *= 10
# While there are numbers left
while x:
if ((x % 10) != (x / digits)):
return False
# Removes a digit off each side
x = x % digits / 10
# Removes 2 digits
digits /= 100;
return True
#-------------------------------------------------------------------------------
#Testing
def main():
x = Solution()
y = x.isPalindrome(1234321)
print y
main()