First solution in Clear category for Number Length by ddx1
def number_length(value: int) -> int: return len(str(value))
June 3, 2024
Comments: