Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 'no extra spaces';
b = 'no extra spaces';
assert(isequal(b,removeSpaces(a)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In removeSpaces (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
a = ' lots of space in front';
b = 'lots of space in front';
assert(isequal(b,removeSpaces(a)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In removeSpaces (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
a = 'lots of space in back ';
b = 'lots of space in back';
assert(isequal(b,removeSpaces(a)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In removeSpaces (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
a = ' space on both sides ';
b = 'space on both sides';
assert(isequal(b,removeSpaces(a)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In removeSpaces (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
a = sprintf('\ttab in front, space at end ');
b = sprintf('\ttab in front, space at end');
assert(isequal(b,removeSpaces(a)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In removeSpaces (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
Make one big string out of two smaller strings
1148 Solvers
Find nearest prime number less than input number
268 Solvers
Number of digits in an integer
336 Solvers
521 Solvers
519 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!