forked from Arnon120/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
13_Roman_to_Integer.py
49 lines (48 loc) · 1.44 KB
/
13_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
class Solution:
def romanToInt(self, s: str) -> int:
num = 0
i = 0
while i < len(s):
if s[i] == 'M':
num +=1000
elif s[i] == 'D':
num += 500
elif s[i] == 'C':
if i+1 != len(s):
if s[i+1] == 'D':
num += 400
i +=2
continue
elif s[i+1] == 'M':
num += 900
i += 2
continue
num += 100
elif s[i] == 'L':
num += 50
elif s[i] == 'X':
if i+1 != len(s):
if s[i+1] == 'C':
num += 90
i += 2
continue
elif s[i+1] == 'L':
num += 40
i += 2
continue
num += 10
elif s[i] == 'V':
num += 5
elif s[i] == 'I':
if i+1 != len(s):
if s[i+1] == 'X':
num += 9
i+=2
continue
elif s[i+1] == 'V':
num += 4
i += 2
continue
num += 1
i += 1
return num