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]
364 Solvers
298 Solvers
927 Solvers
307 Solvers
Generate a string like abbcccddddeeeee
155 Solvers
Solution 127347
Not really my solution... just a slightly cheating version of @bmtran's.