Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'Will the ecological jail rule outside the tear';
y_correct = 'tear the outside rule jail ecological the Will';
assert(isequal(reverseWords(x),y_correct))
ans =
'tear the outside rule jail ecological the Will'
|
2 | Pass |
x = 'That computer programmer kept the room warm';
y_correct = 'warm room the kept programmer computer That';
assert(isequal(reverseWords(x),y_correct))
ans =
'warm room the kept programmer computer That'
|
3 | Pass |
x = 'trivial';
y_correct = 'trivial';
assert(isequal(reverseWords(x),y_correct))
ans =
'trivial'
|
1262 Solvers
277 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
413 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!