Solución
solution.tsTypeScript
import string
def is_pangram(sentence: str) -> bool:
# Escribe tu solución aquí
letras = set(c.lower()for c in sentence if c.isalpha())
return set(string.ascii_lowercase).issubset(letras)
print (is_pangram("The quick brown fox jumps over the lazy dog"))0respuestas