Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for End Zeros by josejaconi
def end_zeros(a: int) -> int:
# your code here
if a == 0:
c = 1
else:
c = 0
while a % 10 == 0 and a != 0:
c = c + 1
a = a // 10
return c
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!")
Nov. 28, 2024