-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy path7_ Reverse_Integer.py
42 lines (34 loc) · 1023 Bytes
/
7_ Reverse_Integer.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
Link : https://leetcode.com/problems/reverse-integer/description/
Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0.
Assume the environment does not allow you to store 64-bit integers (signed or unsigned).
Example 1:
Input: x = 123
Output: 321
Example 2:
Input: x = -123
Output: -321
Example 3:
Input: x = 120
Output: 21
solution :
class Solution:
def reverse(self, x: int) -> int:
if not x:
return x
temp = [i for i in str(x)]
i = '0'
j = '-'
temp = temp[::-1]
while 0 <= len(temp):
if temp[0] == i:
temp.remove(temp[0])
else:
break
if temp[-1] == j:
temp.insert(0,j)
temp.pop()
result = int(''.join(map(str,temp)))
if result > 2**31 - 1 or result < -2**31:
return 0
else:
return result