Pangram Check
A pangram is a sentence that contains all 26 lowercase letters of the English alphabet at least once. This kind of check can be useful for testing fonts, keyboards, or sample text. Write a function check_pangram that receives a lowercase English string sentence. Return True if it contains the whole alphabet, otherwise return False.
Примеры
Ввод
"thequickbrownfoxjumpsoverthelazydog"Вывод
TrueВвод
"leetcode"Вывод
FalseВвод
"abcdefghijklmnopqrstuvwxyz"Вывод
TrueНужно реализовать
def check_pangram(sentence: str) -> bool:
Теги
stringssethashmap
Sign in to see submission history
Sign inSign in to use AI Mentor
Sign inTests12
Visible tests
Hidden test 7
Hidden test 8
Hidden test 9
Hidden test 10
Hidden test 11
Hidden test 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