Skip to content

Instantly share code, notes, and snippets.

View gentry-tran's full-sized avatar

Gentry Tran gentry-tran

  • Autonomic, Inc.
  • Detroit, MI
View GitHub Profile
public class RomanNumeral {
Map<String, Integer> numberMap = new HashMap<String, Integer>();
public RomanNumeral() {
numberMap.put("I", 1);
numberMap.put("V", 5);
numberMap.put("X", 10);
numberMap.put("L", 50);
numberMap.put("C", 100);