Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re.match, more intricate patterns, no comparisons solution in Creative category for All Upper II by Splitter
import re
def is_all_upper(text: str) -> bool:
is_text_invalid_match = re.match(r'\A[ \d]*\Z', text)
is_text_valid_match = re.match(r'\A(?
March 13, 2020
Comments: