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.
This kata doesn't make sense. The instructions say:
'''We want to know the index of the vowels in a given word, for example, there are two vowels in the word super (the second and fourth letters).
So given a string "super", we should return a list of [2, 4].
'''
index numbers begin at 0 in lists, the vowels in 'super' would be at 1 and 3
If we want to know the order in the list as opposed to index number the instructions on the kata should be amended to reflect this.
My tests are all passing but failing on submission. I think the tests should be amended or more guidance should be given as to what the contraints are.