solution solution in Clear category for Number Length by pakicetus
def number_length(a: int) -> int: return len(str(a))
July 2, 2020