Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Quick & dirty solution in Clear category for All Upper II by carel.anthonissen
def is_all_upper(text: str) -> bool:
return text == text.upper() and text != text.lower()
May 3, 2020
Comments: