Skip to content
Snippets Groups Projects
Commit 435dc53b authored by Colin DAMON's avatar Colin DAMON
Browse files

Create conversion map

parent 72b71807
No related branches found
No related tags found
1 merge request!37Resolve "TCR Roman Numerals"
package fr.ippon.kata.numeral;
import java.util.NavigableMap;
import java.util.TreeMap;
public class Numerals {
private static final NavigableMap<Integer, String> CONVERSIONS = buildConversions();
public static String toRoman(int arabic) {
if (arabic >= 5) {
......@@ -13,4 +17,14 @@ public class Numerals {
return "I".repeat(arabic);
}
private static NavigableMap<Integer, String> buildConversions() {
NavigableMap<Integer, String> conversions = new TreeMap<>();
conversions.put(1, "I");
conversions.put(4, "IV");
conversions.put(5, "V");
return conversions;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment