Every Letter Check
A pangram is a sentence that uses every letter of the English alphabet at least once. This kind of check is useful when you want to know whether a text covers a full character set. Write is_pangram, which returns True if the string s is a pangram and False otherwise. Letter case does not matter.
Примеры
Ввод
"The quick brown fox jumps over the lazy dog."Вывод
TrueВвод
"This is not a pangram."Вывод
FalseВвод
"Pack my box with five dozen liquor jugs."Вывод
TrueНужно реализовать
def is_pangram(s: str) -> bool:
Теги
stringsset
Inicia sesión para ver tu historial de envíos
Iniciar sesiónInicia sesión para usar el AI Mentor
Iniciar sesiónTests12
Visible tests
Prueba oculta 7
Prueba oculta 8
Prueba oculta 9
Prueba oculta 10
Prueba oculta 11
Prueba oculta 12
They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.
Focus radio
Paused · SomaFM · Fluid