-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path8.StringToInteger.py
39 lines (33 loc) · 1.19 KB
/
8.StringToInteger.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
class Solution:
def myAtoi(self, s: str) -> int:
max_int = 2 ** 31 - 1
min_int = - 2 ** 31
res = 0
negative = False
digit_seen = False
positive_seen = False
for element in s:
if -1 < ord(element) - 48 < 10:
res = res * 10 + ord(element) - 48
digit_seen = True
elif element == '-' and not digit_seen and negative == False and not positive_seen:
negative = True
elif element == '-':
break
elif element == '+' and (digit_seen or negative == True or positive_seen):
break
elif element == '+':
positive_seen = True
elif element == ' ' and (digit_seen or negative == True or positive_seen):
break
elif element == ' ':
continue
else:
break
if negative and -res <= min_int:
return min_int
if negative == False and res >= max_int:
return max_int
if negative:
res = - res
return res