Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Skirting the edge solution in Clear category for Number Length by carel.anthonissen
import math
def number_length(a):
return 1*(not a) or int(math.log10(a))+1
Feb. 28, 2020
Comments: