Problem 31. Remove all the words that end with "ain"

Given the string s1, return the string s2 with the target characters removed.

For example, given

 s1 = 'the main event'

your code would return

 s2 = 'the  event'

Note the 2 spaces between "main" and "event" Only the four letters in the word "main" were deleted.

Solution Stats

32.11% Correct | 67.89% Incorrect
Last Solution submitted on Mar 18, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers2124

Suggested Problems

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!