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))
|
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))
|
3 | Pass |
%%
inStr = ' He is a dirty so and so';
outStr_correct = 'dirty and';
assert(isequal(remove_small_words(inStr),outStr_correct))
|
4 | Pass |
%%
inStr = 'oh me oh my';
outStr_correct = '';
assert(isequal(remove_small_words(inStr),outStr_correct))
|
Find state names that end with the letter A
551 Solvers
Get the area codes from a list of phone numbers
417 Solvers
Back to basics 21 - Matrix replicating
904 Solvers
285 Solvers
314 Solvers