class Solution(object):
def vowelStrings(self, words, left, right):
"""
:type words: List[str]
:type left: int
:type right: int
:rtype: int
"""
return sum(words[i][0] in "aeiou" and words[i][-1] in "aeiou" for i in range(left, right + 1))