Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,7 @@
* [Test Factorial](maths/test_factorial.py)
* [Test Prime Check](maths/test_prime_check.py)
* [Three Sum](maths/three_sum.py)
* [Trailing Zeroes](maths/trailing_zeroes.py)
* [Trapezoidal Rule](maths/trapezoidal_rule.py)
* [Triplet Sum](maths/triplet_sum.py)
* [Twin Prime](maths/twin_prime.py)
Expand Down
40 changes: 40 additions & 0 deletions maths/trailing_zeroes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
"""
https://en.wikipedia.org/wiki/Trailing_zero
"""


def trailing_zeroes(num: int) -> int:
"""
Finding the Trailing Zeroes i.e. zeroes present at the end of number
Args:
num: A integer.
Returns:
No. of zeroes in the end of an integer.

>>> trailing_zeroes(1000)
3
>>> trailing_zeroes(102983100000)
5
>>> trailing_zeroes(0)
1
>>> trailing_zeroes(913273)
0
"""
ans = 0
if num < 0:
return -1
if num == 0:
return 1
while num > 0:
if num % 10 == 0:
ans += 1
else:
break
num /= 10
return ans


if __name__ == "__main__":
import doctest

doctest.testmod()
Loading