First solution in Clear category for Number Length by estelle.doriot
def number_length(a: int) -> int: return len(str(a))
July 25, 2023
Comments: