Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Clear category for End Zeros by Stensen
end_zeros = lambda n: len(__import__('re').split('[^0]', str(n)[::-1])[0])
Sept. 20, 2020
Comments: