First solution in Clear category for All Upper II by vnkvstnk
def is_all_upper(text: str) -> bool: return text.isupper()
May 1, 2020