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 logicalladybuglifestyle
def is_all_upper(text: str) -> bool:
return text.replace('', '').isupper()
April 4, 2020