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))
|
337 Solvers
6360 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
123 Solvers
Convert given decimal number to binary number.
636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!