-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreverse-integer.py
More file actions
83 lines (66 loc) · 1.55 KB
/
reverse-integer.py
File metadata and controls
83 lines (66 loc) · 1.55 KB
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
80
81
82
83
'''
Problem:
Given a 32-bit signed integer, reverse digits of an integer.
Example 1:
Input: 123
Output: 321
Example 2:
Input: -123
Output: -321
Example 3:
Input: 120
Output: 21
Note:
Assume we are dealing with an environment which could only hold integers within the 32-bit signed integer range.
For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
'''
'''
'''
class Solution(object):
def reverse(self, x):
"""
:type x: int
:rtype: int
"""
s = str(x)
print s
if s[0] == '-':
xRev = int('-' + s[len(s):0:-1])
if xRev > 2147483647 or xRev < -2147483648:
return 0
else:
return xRev
else:
xRev = int(s[::-1])
if xRev > 2147483647 or xRev < -2147483648:
return 0
else:
return xRev
def reverseFaster(self, x):
"""
:type x: int
:rtype: int
"""
res = 0
sign = 1
num = []
if x < 0:
sign = -1
if x == 0:
return 0
x = abs(x)
while x:
num.append(x%10)
x //= 10
for i in num:
res *= 10
res += i
if res > 0x7FffFFff:
return 0
else:
return res * sign
myClass = Solution()
print myClass.reverse(-12345678)
print myClass.reverse(-2147483648)
print myClass.reverseFaster(-12345678)
print myClass.reverseFaster(-2147483648)