Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
cstr = {' Trim leading white-space';
'Trim trailing white-space '};
y_correct = {'Trim leading white-space';'Trim trailing white-space'};
assert(isequal(white_space_remove(cstr),y_correct))
|
2 | Pass |
%%
NL = char(0);
TAB = char(9);
x = [NL 32 TAB NL 'AB' 32 NL 'CD' NL 32 TAB NL 32];
y_correct = [NL 32 TAB NL 'AB' 32 NL 'CD' NL 32 TAB NL];
assert(isequal(white_space_remove(x),y_correct))
|
Count from 0 to N^M in base N.
220 Solvers
147 Solvers
217 Solvers
5013 Solvers
505 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!