← Back to List

11091번: 알파벳 전부 쓰기 ↗

Solutions

Python 3
235 B | 235 chars
for t in range(int(input())):
    a=set(input().lower())
    s=""
    for i in range(ord('a'),ord('z')+1):
        if chr(i) not in a:
            s+=chr(i)
    if s == "":
        print("pangram")
    else:
        print("missing",s)