Solución
solution.tsTypeScript
export function isPangram(sentence: string): boolean {
for(let i = 97; i < 122; i++)
if (![...sentence.toLowerCase()].includes(String.fromCharCode(i))) return false;
return true;
}0respuestas
export function isPangram(sentence: string): boolean {
for(let i = 97; i < 122; i++)
if (![...sentence.toLowerCase()].includes(String.fromCharCode(i))) return false;
return true;
}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.