You are viewing a single comment's thread. Return to all comments →
another python one-liner:
print("pangram") if len(set([i.lower() for i in input().strip()]) & set("abcdefghijklmnopqrstuvwxyz")) == 26 else print("not pangram")
Seems like cookies are disabled on this browser, please enable them to open this website
Pangrams
You are viewing a single comment's thread. Return to all comments →
another python one-liner: