Sorry, mistake in crediting comment in code; this solution is based on Jan's solution (Solution 17079) -- not Jan Orwat's solution.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s1 = 'I love MATLAB';
s2_correct = 'V ybir ZNGYNO';
assert(isequal(rot13(s1),s2_correct))
|
2 | Pass |
s1 = 'I <3 MATLAB!!';
s2_correct = 'V <3 ZNGYNO!!';
assert(isequal(rot13(s1),s2_correct))
|
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))
|
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))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
29437 Solvers
Find all elements less than 0 or greater than 10 and replace them with NaN
11623 Solvers
851 Solvers
451 Solvers
Find the dimensions of a matrix
267 Solvers