forked from TonnyL/Windary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RomanToInteger.java
executable file
·44 lines (36 loc) · 1.06 KB
/
RomanToInteger.java
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
import java.util.HashMap;
import java.util.Map;
/**
* Given a roman numeral, convert it to an integer.
* Input is guaranteed to be within the range from 1 to 3999.
* <p>
* Accepted.
*/
public class RomanToInteger {
public int romanToInt(String s) {
if (s == null) {
return -1;
}
Map<Character, Integer> dict = new HashMap<>(7);
dict.put('I', 1);
dict.put('V', 5);
dict.put('X', 10);
dict.put('L', 50);
dict.put('C', 100);
dict.put('D', 500);
dict.put('M', 1000);
char[] chars = s.toCharArray();
int result = 0;
for (int i = 0; i < chars.length; i++) {
if (i + 1 < chars.length
&& dict.get(chars[i + 1]) > dict.get(chars[i])
&& (chars[i] == 'I' || chars[i] == 'X' || chars[i] == 'C')) {
result += dict.get(chars[i + 1]) - dict.get(chars[i]);
i++;
} else {
result += dict.get(chars[i]);
}
}
return result;
}
}