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 Solvers5
Suggested Problems
-
Return elements unique to either input
816 Solvers
-
360 Solvers
-
Replace all zeros and NaNs in a matrix with the string 'error'
104 Solvers
-
The Answer to Life, the Universe, and Everything
588 Solvers
-
RPN Calculator for simple arithmetic expressions
15 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!