See how it relates to detecting pangram and counting characters in a string, and counting duplicates. So much counting!
vowels = ['a', 'e', 'i', 'o', 'u']
def get_count(sentence):
res = 0
for c in sentence:
if c in vowels:
res += 1
return res