Problem 88. It dseon't mettar waht oedrr the lrettes in a wrod are.
Solution Stats
Problem Comments
-
3 Comments
Put more test cases in. Makes cheating too tempting.
the regexp solution is great
Adding a test case containing words with hyphens like 'hard-working' will make this problem more challenging.
Solution Comments
-
2 Comments
Test 1 doesn't work, I literally have the same result and it fails, but test 2 passes
Your function produces sOut in string format (in the last line of the function). The test suite defines the variables as character arrays instead of strings. These two data types cannot be directly compared—i.e., you'll have to return a character array.
Also, when I run your function, it returns "hello" rather than "hlleo".
-
3 Comments
I've tried the assert in MATLAB on my desktop and it doesn't throw an error... so I'm not really sure where it's gone wrong here. I'm guessing it's something tiny I've missed. Any help?
Which version of MATLAB are you using on your desktop? I tried running your solution on MATLAB desktop version 2019a and the solution is failing with correct assertions. In order to figure out the version of MATLAB, command "ver' will get you the version.
The version of matlab is not going to affect the result. This solution removes punctuation from the input, so the '.' at the end of sentence in the second test is incorrectly removed.
-
1 Comment
Couldn't work out how to leave the punctuation in :(
-
1 Comment
Brilliant!
-
1 Comment
The test suite should add commas and other punctuation.
Problem Recent Solvers1026
Suggested Problems
-
Basic electricity in a dry situation
523 Solvers
-
328 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
439 Solvers
-
610 Solvers
-
2177 Solvers
More from this Author95
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!