Skip to content

Instantly share code, notes, and snippets.

@dmshvetsov
Created May 8, 2020 11:56
Show Gist options
  • Select an option

  • Save dmshvetsov/e5e699c17d8bc0686bea02bcd79eb2df to your computer and use it in GitHub Desktop.

Select an option

Save dmshvetsov/e5e699c17d8bc0686bea02bcd79eb2df to your computer and use it in GitHub Desktop.
const ARABIC_ROMAN_MAP = [
["M", 1000],
["CM", 900],
["D", 500],
["CD", 400],
["C", 100],
["XC", 90],
["L", 50],
["XL", 40],
["X", 10],
["IX", 9],
["V", 5],
["IV", 4],
["I", 1]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment