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))
ans =
ours not reason why
|
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))
ans =
not That the question
|
3 | Pass |
inStr = ' He is a dirty so and so';
outStr_correct = 'dirty and';
assert(isequal(remove_small_words(inStr),outStr_correct))
ans =
dirty and
|
4 | Pass |
inStr = 'oh me oh my';
outStr_correct = '';
assert(isequal(remove_small_words(inStr),outStr_correct))
ans =
0×0 empty char array
|
Increment a number, given its digits
562 Solvers
Back to basics 18 - justification
176 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
Create matrix of replicated elements
321 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!