Make sure you are including the very last value in your code. If you are loopin up to the last value then it will not include the last value in your solution
The only edition of the kata description is from 2017 and it was like this:
Given an array of numbers (s), check if any of the numbers are the character codes for lower case vowels.
to
Given an array of numbers, check if any of the numbers are the character codes for lower case vowels (`a, e, i, o, u`).
Either they changed the details tab or I completely misread the instructions the last few days, but you have to decode the integer values to see if it equals a vowel and if so then replace the integer with the corresponding vowel. I could have sworn when I first attempted it was find a vowel and turn it into a integer as well.
Make sure you are including the very last value in your code. If you are loopin up to the last value then it will not include the last value in your solution
The only edition of the kata description is from 2017 and it was like this:
Either they changed the details tab or I completely misread the instructions the last few days, but you have to decode the integer values to see if it equals a vowel and if so then replace the integer with the corresponding vowel. I could have sworn when I first attempted it was find a vowel and turn it into a integer as well.
That's exactly what it should be.
Google Python range.