First solution in Clear category for All Upper I by carel.anthonissen
def is_all_upper(text: str) -> bool: return text == text.upper()
May 7, 2020