Problem 302. Convert Roman to Arabic Numerals
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:
'XXXIX CCXLVI' -> [39 246]
'DLV MCCXXXIV MDCCLXXVI' -> [555 1234 1776]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers102
Suggested Problems
-
Remove the polynomials that have positive real elements of their roots.
1675 Solvers
-
Determine if a Given Number is a Triangle Number
377 Solvers
-
Generate N equally spaced intervals between -L and L
865 Solvers
-
Unique values without using UNIQUE function
352 Solvers
-
Calculate Amount of Cake Frosting
24972 Solvers
More from this Author39
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!