Problem 82. Remove the small words from a list of words.
Solution Stats
Problem Comments
-
1 Comment
This problem is tricky! Better add more test cases and rescore. E.g., 'aaa bb'
Solution Comments
-
1 Comment
I was too lazy to write a new solution. So I used a solution to one of the earlier problems that I had solved and modified it to this problem. GG
-
1 Comment
good one
-
1 Comment
Test Suite
Test Status Code Input and Output
1 Fail
inStr = 'ours is not to reason why';
outStr_correct = 'ours not reason why';
assert(isequal(remove_small_words(inStr),outStr_correct))
outStr =
'ours not reason why'
Assertion failed.
2 Fail
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))
outStr =
'not That the question'
Assertion failed.
3 Fail
inStr = ' He is a dirty so and so';
outStr_correct = 'dirty and';
assert(isequal(remove_small_words(inStr),outStr_correct))
outStr =
'dirty and '
Assertion failed.
4 Pass
inStr = 'oh me oh my';
outStr_correct = '';
assert(isequal(remove_small_words(inStr),outStr_correct))
outStr =
0×0 empty char array
what is wrong withthe assertion here?
-
1 Comment
Not sure, why this fails, passes on my local MATLAB (version 8.3.0.532 (R2014a))
-
1 Comment
this won't work correctly for ' aaa '
-
1 Comment
This won't always work.
Problem Recent Solvers1153
Suggested Problems
-
1770 Solvers
-
452 Solvers
-
16591 Solvers
-
Output any real number that is neither positive nor negative
373 Solvers
-
Relative ratio of "1" in binary number
969 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!