Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pangram by tokiojapan55
def check_pangram(text):
return len(set([c.lower() for c in text if c.isalpha()])) == 26
June 15, 2020
Comments: