-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path13-Roman_to_Integer.java
More file actions
85 lines (83 loc) · 2.65 KB
/
13-Roman_to_Integer.java
File metadata and controls
85 lines (83 loc) · 2.65 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
class Solution {
public int romanToInt(String s) {
int length = s.length();
int solution = 0;
for(int i = 0; i < length; i++){
switch (s.charAt(i)){
case 'M':
solution = solution + 1000;
break;
case 'D':
solution = solution + 500;
break;
case 'C':
if((i + 2) <= length){
if(s.charAt(i + 1) == 'D'){
solution = solution + 400;
i++;
}
else{
if(s.charAt(i + 1) == 'M'){
solution = solution + 900;
i++;
}
else{
solution = solution + 100;
}
}
}
else{
solution = solution + 100;
}
break;
case 'L':
solution = solution + 50;
break;
case 'X':
if((i + 2) <= length){
if(s.charAt(i + 1) == 'L'){
solution = solution + 40;
i++;
}
else{
if(s.charAt(i + 1) == 'C'){
solution = solution + 90;
i++;
}
else{
solution = solution + 10;
}
}
}
else{
solution = solution + 10;
}
break;
case 'V':
solution = solution + 5;
break;
case 'I':
if((i + 2) <= length){
if(s.charAt(i + 1) == 'V'){
solution = solution + 4;
i = i + 1;
}
else{
if(s.charAt(i + 1) == 'X'){
solution = solution + 9;
i = i + 1;
}
else{
solution = solution + 1;
}
}
}
else{
solution = solution + 1;
}
break;
}
}
return solution;
}
}