Problem 82. Remove the small words from a list of words.
Your job is to tidy up a list of words that appear in a string. The words are separated by one or more spaces. Remove all words that are one or two letters long and make sure that exactly one space separates all the words. Strings will be made up only of letters and spaces. Spaces should not appear at the beginning or end of your output string.
Example:
inStr = 'ours is not to reason why'; outStr = 'ours not reason why';
Solution Stats
Problem Comments
-
1 Comment
This problem is tricky! Better add more test cases and rescore. E.g., 'aaa bb'
Solution Comments
Show commentsProblem Recent Solvers1494
Suggested Problems
-
331 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
372 Solvers
-
Return the first and last characters of a character array
9918 Solvers
-
Find the maximum number of decimal places in a set of numbers
2854 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
718 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!