Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sum solution in Clear category for Count Vowels by Olpag
def count_vowels(text: str) -> int:
return sum(char in 'aeiou' for char in text.lower())
Nov. 8, 2023