First solution in Clear category for Pangram by panaro32
def check_pangram(t): return all(chr(x+97) in t.lower() for x in range(26))
March 28, 2015