Solución
solution.tsTypeScript
def is_pangram(sentence: str) -> bool:
if not sentence: return False
chars = "abcdefghijklmnopqrstuvwxyz"
for char in chars:
if char not in sentence.lower():
return False
return True0respuestas