Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by Stanislaw_Szataniak
ALPH = "abcdefghijklmnopqrstuvwxyz"
def check_pangram(text):
text = text.lower()
b=[]
for i in text:
if i.isalpha():
b.append(i)
b.sort()
i = 0
while i
Nov. 20, 2016