Roman numeral converter
In all my years, as a developer, I’ve never had a project that required converting Roman numerals… that project, wherever it is out there in the wild, sounds like it would be an entertaining one.. class RomanNumerals DIGITS = { 1000 => ‘M’, 900 => ‘CM’, 500 => ‘D’, 400 => ‘CD’, 100 => ‘C’,…