Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple - 5 lines solution in Clear category for Pangram by thealfest1
def check_pangram(text):
for s in 'abcdefghijklmnopqrstuvwxyz':
if s not in text.casefold():
return False
return True
Jan. 6, 2019
Comments: