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