Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Pangram by _Chico_
from string import ascii_uppercase
def check_pangram(text):
return set(text.upper()).issuperset(ascii_uppercase)
May 17, 2021
Comments: