Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1990;
y_correct = 'MCMXC';
assert(isequal(dec2rom(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In dec2rom (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 2008;
y_correct = 'MMVIII';
assert(isequal(dec2rom(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In dec2rom (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 1666;
y_correct = 'MDCLXVI';
assert(isequal(dec2rom(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In dec2rom (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 49;
y_correct = 'XLIX';
assert(isequal(dec2rom(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In dec2rom (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 45;
y_correct = 'XLV';
assert(isequal(dec2rom(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In dec2rom (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = 0;
y_correct = '';
assert(isempty(dec2rom(x)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In dec2rom (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
4106 Solvers
2500 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
260 Solvers
5463 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!