Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All Upper II by twilyght
def is_all_upper(text: str) -> bool:
return any(c.isalpha() for c in text) and text == text.upper()
May 3, 2020