Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for All Upper II by _Chico_
def is_all_upper(text: str) -> bool:
return text.replace('', '').isupper()
June 6, 2021