-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathroman_to_integer.py
50 lines (48 loc) · 2.49 KB
/
roman_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
# coding: utf-8
# ## ##
# ##### # ####
# ######### ## #######
# ### ############ ##
# #### # ####### #########
# ########### ######### # ########### ##
# ############# ### #### ## #### ######## ##
# ## ## ## ## ### ######### ######### ### ## # ### ## #
# ## ## ## ### ######## ########## #### ## ### #### ### ##### ####
# ## #### ## ## ######### ########## ######## ##### #### #### ##### #####
# ###### #### ## ## ### ## ### ############ ## ### ## ## ## ### ### ##### ### ##
# #### ##### ## ### ### ###### ############ ## ## ##### ### ## ### ### #####
# ## ## ### ### ### ### ######### ############## ### ## #### ## ### ##### #### ####
# ## ### ## ## ## ### ##### ############## ####### ##### ##### ##### ### ######
# ## ### ## ####### ###### ############### #### ## ## # ###
# ## ###### ####### ##### ################# ###
# ## ### ## ## ### ################# ##
# ## ## ################### ##
# ## ### ######################
# ## # ## #
# ##
# author: RaPoSpectre
# time: 2016-11-08
class Solution(object):
def romanToInt(self, s):
"""
:type s: str
:rtype: int
"""
roman_dict = {'I': 1,
'V': 5,
'X': 10,
'L': 50,
'C': 100,
'D': 500,
'M': 1000}
total = 0
last = 0
for i in s.upper():
num = roman_dict[i]
if num > last:
total -= last
else:
total += num
last = num
return total
# print Solution().romanToInt('MCMLXXXIV')