basic 1-liner solution in Clear category for Pangram by Phil15
check_pangram=lambda t:len({x.lower()for x in t if x.isalpha()})==26
Feb. 28, 2020