Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using a while loop to solve for the number of zeroes at the end of the integer solution in Clear category for End Zeros by gr8alphaogre
def end_zeros(a: int) -> int:
# your code here
getdigit = 10
totalZeroes = 0
i=0
while i < len(str(a)):
if a%getdigit == 0 :
i+=1
totalZeroes +=1
getdigit = getdigit*10
else:
i+=1
continue
return totalZeroes
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!")
Sept. 1, 2024