Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Use the force of set, Luke! solution in Clear category for Pangram by obone
def check_pangram(text):
from string import ascii_lowercase as abc
return set(abc) <= set(t for t in text.lower())
July 17, 2019
Comments: