Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s1 = 'I love MATLAB';
s2_correct = 'V ybir ZNGYNO';
assert(isequal(rot13(s1),s2_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 rot13 (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
s1 = 'I <3 MATLAB!!';
s2_correct = 'V <3 ZNGYNO!!';
assert(isequal(rot13(s1),s2_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 rot13 (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
s1 = 'The quick fox stumbled over the confusing instructions.';
s2_correct = 'Gur dhvpx sbk fghzoyrq bire gur pbashfvat vafgehpgvbaf.';
assert(isequal(rot13(s1),s2_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 rot13 (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
s1 = 'Snape kills Dumbledore on page 606. Also, there is no Santa.';
s2_correct = 'Fancr xvyyf Qhzoyrqber ba cntr 606. Nyfb, gurer vf ab Fnagn.';
assert(isequal(rot13(s1),s2_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 rot13 (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
9875 Solvers
1421 Solvers
Check if number exists in vector
4469 Solvers
360 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!