Straightforward solution in Clear category for Number Length by rodka81
def number_length(a: int) -> int: return len(str(a))
Feb. 28, 2020