-
Notifications
You must be signed in to change notification settings - Fork 820
/
RomanToInteger.java
49 lines (44 loc) · 1.05 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
45
46
47
48
49
/* (C) 2024 YourCompanyName */
package math;
import java.util.HashMap;
import java.util.Map;
/**
* Created by gouthamvidyapradhan on 12/08/2017.
*
* <p>Given a roman numeral, convert it to an integer.
*
* <p>Input is guaranteed to be within the range from 1 to 3999.
*/
public class RomanToInteger {
/**
* Main method
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
System.out.println(new RomanToInteger().romanToInt("DXCIX"));
}
public int romanToInt(String s) {
Map<Character, Integer> map = new HashMap<>();
map.put('I', 1);
map.put('V', 5);
map.put('X', 10);
map.put('L', 50);
map.put('C', 100);
map.put('D', 500);
map.put('M', 1000);
String str = new StringBuilder(s).reverse().toString();
int sum = 0, prev = -1;
for (int i = 0, l = str.length(); i < l; i++) {
int curr = map.get(str.charAt(i));
if (curr < prev) {
sum -= curr;
} else {
sum += curr;
}
prev = curr;
}
return sum;
}
}