First solution in Clear category for Number Length by ene8255
def number_length(a: int) -> int: return len(str(a))
July 27, 2021
Comments: