Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for All Upper II by Tinus_Trotyl
def is_all_upper(text: str) -> bool:
return bool([1 for ch in text if 'A' <= ch.upper() <= 'Z']) and all(ch == ch.upper() for ch in text)
Oct. 9, 2020