Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by PawelMartyniuk
def check_pangram(text):
text = text.upper()
alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
listof = list(set(text))
i = 0
count = 0
while i
Nov. 15, 2016