Solución
solution.tsTypeScript
def count_words_starting_with_vowel(sentence: str) -> int:
words = sentence.split(" ")
vowel_words = 0
for vowel in ["a","e","i","o","u"]:
for word in words:
if word.lower().startswith(vowel):
vowel_words += 1
return vowel_words0respuestas