Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
lambda solution in Clear category for Pangram by sanello
check_pangram = lambda text: False if len({ch for ch in text.lower() if ch.isalpha()}) - 26 else True
Sept. 17, 2019
Comments: