Full Alphabet Check

A pangram is a string that contains every letter of the Latin alphabet, often used to test fonts and keyboards. The function is_pangram receives a string s and checks whether it contains all 26 Latin letters at least once. Letter case does not matter, so A and a count as the same letter.

Примеры

Ввод
["The quick brown fox jumps over the lazy dog"]
Вывод
True
Ввод
["Hello world"]
Вывод
False
Ввод
["Pack my box with five dozen liquor jugs"]
Вывод
True

Нужно реализовать

def is_pangram(s: str) -> bool:

Теги

stringsset
PostgreSQLv16

Hier verschijnt het resultaat van je code

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