Ad
  • Default User Avatar

    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.

  • Default User Avatar

    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.