Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for End Zeros by hariharan.piranavan
def end_zeros(num: int) -> int:
text = str(num)
text_length = len(text)
text_without_zeros = text.strip('0')
text_length_without_zeros = len(text_without_zeros)
return text_length - text_length_without_zeros
print("Example:")
print(end_zeros(10))
# These "asserts" are used for self-checking
assert end_zeros(0) == 1
assert end_zeros(1) == 0
assert end_zeros(10) == 1
assert end_zeros(101) == 0
assert end_zeros(245) == 0
assert end_zeros(100100) == 2
print("The mission is done! Click 'Check Solution' to earn rewards!")
Oct. 24, 2025