You are viewing a single comment's thread. Return to all comments →
python solution:
def pangrams(s): # Write your code here # Upper case is int 65-90
numList = ['' for l in range(91)] for char in s: numList[ord(char.upper())] = char return 'pangram' if all(numList[65:91]) 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 →
python solution:
def pangrams(s): # Write your code here # Upper case is int 65-90