Solución
solution.tsTypeScript
import re
def count_vowels(text: str) -> int:
return len(re.sub(r"[^aeiou]", "", text.lower()))0respuestas
import re
def count_vowels(text: str) -> int:
return len(re.sub(r"[^aeiou]", "", text.lower()))Aún no hay respuestas
¡Sé el primero en responder!
Recuerda ser amable. Estás comentando la solución de otra persona. Comparte tu perspectiva de forma constructiva y respetuosa.