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))
|
19338 Solvers
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
1310 Solvers
15302 Solvers
Remove white space from the string
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!