• + 0 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'