Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
if you put a space wrong in the output string then it wouldn't be correct any more, that should be entirely unsurprising x)
maybe you'd argue that a space doesn't matter because a human might not see it. but some humans would see it, or it would look weird in some situations. there's also nothing special about space - the problem description doesn't mention words (or more to the point, word separators, space), and if you have logic in your code that is doing things that aren't related to the problem then that might immediately be a hint that it is not the correct thing to do. you could have other characters missing or added, ones that you would see. wrong spaces might also wreak havoc in other parts of a program that relies on disemvowel to behave correctly.
are you guys telling me there is like a million diffrent ways to frase this? why does it fail if I put a single space in the wrong spot then? coding sucks.
nice
This comment is hidden because it contains spoiler information about the solution
sounds easy enough to test, I'd be interested in seeing any results
It should be faster than regex solution
One of the least performant solutions but still nice looking :)
This one made the most sense to me. Thank you