Clear solution in Clear category for All Upper I by Revold
def is_all_upper(text: str) -> bool: return text == text.upper()
Nov. 22, 2020
Comments: