First solution in Clear category for Is String a Number? by Magu
def is_number(val: str) -> bool: return val.isdecimal()
Oct. 23, 2023