Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Creative category for Pangram by Stensen
check_pangram = lambda t: len(set(__import__('re').findall('[a-z]', t.lower())))>=26
Sept. 21, 2020