-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathstring_to_integer.py
51 lines (48 loc) · 2.59 KB
/
string_to_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
43
44
45
46
47
48
49
50
51
# coding: utf-8
# ## ##
# ##### # ####
# ######### ## #######
# ### ############ ##
# #### # ####### #########
# ########### ######### # ########### ##
# ############# ### #### ## #### ######## ##
# ## ## ## ## ### ######### ######### ### ## # ### ## #
# ## ## ## ### ######## ########## #### ## ### #### ### ##### ####
# ## #### ## ## ######### ########## ######## ##### #### #### ##### #####
# ###### #### ## ## ### ## ### ############ ## ### ## ## ## ### ### ##### ### ##
# #### ##### ## ### ### ###### ############ ## ## ##### ### ## ### ### #####
# ## ## ### ### ### ### ######### ############## ### ## #### ## ### ##### #### ####
# ## ### ## ## ## ### ##### ############## ####### ##### ##### ##### ### ######
# ## ### ## ####### ###### ############### #### ## ## # ###
# ## ###### ####### ##### ################# ###
# ## ### ## ## ### ################# ##
# ## ## ################### ##
# ## ### ######################
# ## # ## #
# ##
# author: RaPoSpectre
# time: 2016-11-02
class Solution(object):
def myAtoi(self, s):
"""
:type str: str
:rtype: int
"""
s = s.strip()
a = s
num = ["-", "+", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
for i in num:
a = a.replace(unicode(i), "")
if len(a) != 0:
first_ng = a[0]
s = s.split(first_ng)[0]
if s:
if (s.count("+") + s.count("-")) > 1 or ((s.count("+") + s.count("-")) == 1 and len(s) == 1):
return 0
ds = int(s)
if ds < -2147483648:
return -2147483648
elif ds > 2147483647:
return 2147483647
return ds
return 0