Solución
solution.tsTypeScript
def is_pangram(sentence: str) -> bool:
# Escribe tu solución aquí
alfabeto = "abcdefghijklmnopqrstuvwxyz"
sentence1 = sentence.lower()
for i in alfabeto:
if i not in sentence1:
return False
return True0respuestas