This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
inStr = 'ours is not to reason why';
outStr_correct = 'ours not reason why';
assert(isequal(remove_small_words(inStr),outStr_correct))
[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 remove_small_words (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
inStr = 'To be or not to be That is the question';
outStr_correct = 'not That the question';
assert(isequal(remove_small_words(inStr),outStr_correct))
[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 remove_small_words (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
inStr = ' He is a dirty so and so';
outStr_correct = 'dirty and';
assert(isequal(remove_small_words(inStr),outStr_correct))
[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 remove_small_words (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
inStr = 'oh me oh my';
outStr_correct = '';
assert(isequal(remove_small_words(inStr),outStr_correct))
[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 remove_small_words (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
Find the alphabetic word product
1997 Solvers
647 Solvers
624 Solvers
309 Solvers
480 Solvers