Based upon what I see on tv and at the movies, the use of Roman numerals indicates something is important or sophisticated (e.g. the Superbowl, Olympics, movie credits). But who wants to bother with trying to translate them into decimal notation? I sure don't.. thus the problem is to take an input string array with an arbitrary number of Roman numerals, separated by spaces, and return an array of the resulting Arabic versions. Note since there is no standardization regarding some of the more 'modern' rules of Roman numeral notation, there may be multiple ways of representing the same Arabic number, as shown in the example below:
'XIX' -> [19] 'IV MMXII LIV' -> [4 2012 54] 'MDCCCCLXXXXVIIII MCMXCIX MIM' -> [1999 1999 1999]
469 Solvers
Count from 0 to N^M in base N.
200 Solvers
178 Solvers
Convert hex color specification to MATLAB RGB
91 Solvers
904 Solvers
Solution 127347
Not really my solution... just a slightly cheating version of @bmtran's.