Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 'no extra spaces';
b = 'no extra spaces';
assert(isequal(b,removeSpaces(a)))
b =
no extra spaces
|
2 | Pass |
%%
a = ' lots of space in front';
b = 'lots of space in front';
assert(isequal(b,removeSpaces(a)))
b =
lots of space in front
|
3 | Pass |
%%
a = 'lots of space in back ';
b = 'lots of space in back';
assert(isequal(b,removeSpaces(a)))
b =
lots of space in back
|
4 | Pass |
%%
a = ' space on both sides ';
b = 'space on both sides';
assert(isequal(b,removeSpaces(a)))
b =
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)))
b =
tab in front, space at end
|
Find all elements less than 0 or greater than 10 and replace them with NaN
11633 Solvers
First non-zero element in each column
471 Solvers
Convert a numerical matrix into a cell array of strings
152 Solvers
Who has power to do everything in this world?
256 Solvers
Do Fast Fourier Transformation
178 Solvers