Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 'no extra spaces';
b = 'no extra spaces';
assert(isequal(b,removeSpaces(a)))
|
2 | Pass |
a = ' lots of space in front';
b = 'lots of space in front';
assert(isequal(b,removeSpaces(a)))
|
3 | Pass |
a = 'lots of space in back ';
b = 'lots of space in back';
assert(isequal(b,removeSpaces(a)))
|
4 | Pass |
a = ' space on both sides ';
b = 'space on both sides';
assert(isequal(b,removeSpaces(a)))
|
5 | Pass |
a = sprintf('\ttab in front, space at end ');
b = sprintf('\ttab in front, space at end');
assert(isequal(b,removeSpaces(a)))
|
Find the peak 3n+1 sequence value
1107 Solvers
624 Solvers
386 Solvers
Find perfect placement of non-rotating dominoes (easier)
240 Solvers
307 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!