LEN(STR) solution in Clear category for Number Length by klukvenka
def number_length(a: int) -> int: return len(str(a))
July 15, 2021
Comments: