First solution in Clear category for Number Length by juicelina.com
def number_length(a: int) -> int: return len(str(a))
Sept. 28, 2022