Quick Brown Fox
This commit is contained in:
9
quickbrownfox.py
Normal file
9
quickbrownfox.py
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
n = int(input())
|
||||||
|
alphabet = 'abcdefghijklmnopqrstuvwxyz'
|
||||||
|
for _ in range(n):
|
||||||
|
line = input().strip().lower()
|
||||||
|
missing = ""
|
||||||
|
for letter in alphabet:
|
||||||
|
if letter not in line:
|
||||||
|
missing = f"{missing}{letter}"
|
||||||
|
print("pangram" if missing == "" else f"missing {missing}")
|
||||||
Reference in New Issue
Block a user