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
PostgreSQLv16

Čia bus kodo vykdymo rezultatas

Visible tests
1
Input
"The quick brown fox jumps over the lazy dog."
ExpectedTrue
2
Input
"This is not a pangram."
ExpectedFalse
3
Input
"Pack my box with five dozen liquor jugs."
ExpectedTrue
4
Input
""
ExpectedFalse
5
Input
"abcdefghijklmnopqrstuvwxyz"
ExpectedTrue
6
Input
" "
ExpectedFalse
Focus radio
Paused · SomaFM · Fluid