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.
@giwook: The description says "Don't worry about uppercase vowels."
So the test cases cannot contain uppercase vowels.
Still, I would definitely not consider this solution "Best Practices" or "Clever" as it in principle is removing more than the lowercase vowels...
So this solution shouldn't have passed. Some additional tests should be added that include uppercase vowels.
It would, because of the ignore case regex modifier (/gi - global, ignore case).
Surely this would also remove uppercase vowels?
This comment is hidden because it contains spoiler information about the solution