Given an integer n and a number base b, write a function that calculates the number of trailing zeros of the factorial of n when written in base-b.
For example, for
and
, the function should return 5, because:
>> dec2base(factorial(15),4)
>> '103001313131311200000'
For
and
, the function should return 4.
>> dec2base(factorial(10),12)
>> '1270000'
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers4
Suggested Problems
-
Remove the small words from a list of words.
1566 Solvers
-
287 Solvers
-
587 Solvers
-
Getting the indices from a matrix
732 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
401 Solvers
More from this Author116
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!