Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'XIX';
y_correct = 19;
assert(isequal(roman(x),y_correct))
|
2 | Pass |
x = 'IV MMXII LIV';
y_correct = [4 2012 54];
assert(isequal(roman(x),y_correct))
|
3 | Pass |
x = 'MDCCCCX MCMIII MCMX';
y_correct = [1910 1903 1910];
assert(isequal(roman(x),y_correct))
|
4 | Pass |
x = 'MDCCCCLXXXXVIIII MCMXCIX MIM';
y_correct = [1999 1999 1999];
assert(isequal(roman(x),y_correct))
|
594 Solvers
130 Solvers
Cell Counting: How Many Draws?
581 Solvers
224 Solvers
206 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!