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.
I'm disgusted.
Condition to count could be made better for performance. Performance is going to be better simply by comparing every char in input string against a set of vowels.
This is definitely good enough for this case. If we had many more vowels, the search would end up being pretty inefficient, we should use a Set instead or anything with O(1) lookups.