First solution in Clear category for Number Length by driedwatermelon
def number_length(a: int) -> int: return len(str(a))
Dec. 1, 2020
Comments: