Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 'no extra spaces';
b = 'no extra spaces';
assert(isequal(b,removeSpaces(a)))
ans =
no extra spaces
|
2 | Pass |
%%
a = ' lots of space in front';
b = 'lots of space in front';
assert(isequal(b,removeSpaces(a)))
ans =
lots of space in front
|
3 | Pass |
%%
a = 'lots of space in back ';
b = 'lots of space in back';
assert(isequal(b,removeSpaces(a)))
ans =
lots of space in back
|
4 | Pass |
%%
a = ' space on both sides ';
b = 'space on both sides';
assert(isequal(b,removeSpaces(a)))
ans =
space on both sides
|
5 | Pass |
%%
a = sprintf('\ttab in front, space at end ');
b = sprintf('\ttab in front, space at end');
assert(isequal(b,removeSpaces(a)))
ans =
tab in front, space at end
|
850 Solvers
735 Solvers
1057 Solvers
196 Solvers
Back to basics - mean of corner elements of a matrix
237 Solvers