You are viewing a single comment's thread. Return to all comments →
python3 1 line solution:
def pangrams(s): return "pangram" if len(list(set((s.replace(" ","").lower())))) == 26 else "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 →
python3 1 line solution: