-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.py
52 lines (28 loc) · 827 Bytes
/
7.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
46
47
48
49
50
51
52
class Solution:
def reverse(self, x):
"""
:type x: int
:rtype: int
"""
lst = []
if x>0:
flag =1
else:
flag =-1
x=-x
while x!= 0:
newnum=x%10
x=x//10
lst.append(newnum)
length =len(lst)-1
lt =range(length+1)
result =0
for i in lt:
result = result+lst[i]*(10**(length-i))
result = result*flag
if result>2147483647 or result<-2147483648:
return 0
return result
if __name__ == "__main__":
sl = Solution()
print(sl.reverse(1534236469))