Easy Sequences 11: Factorial Digits without Trailing Zeros - MATLAB Cody - MATLAB Central

Problem 52609. Easy Sequences 11: Factorial Digits without Trailing Zeros

Difficulty:Rate
Here is an easy one...
It is not difficult to count the number of digits of the factorial of a given number. For example for 'n = 10', we have:
>> length(num2str(factorial(10)))
>> ans =
7
But 2 of those digits are just trailing zeros. So, for 10!, if we remove the trailing zeros, there would only be 5 digits left.
Write a function that outputs the number of digits of factorials excluding trailing zeros.

Solution Stats

26.6% Correct | 73.4% Incorrect
Last Solution submitted on Aug 30, 2024

Problem Comments

Solution Comments

Show comments

Group

Remove Rows and Columns Image
Remove Rows and Columns
  • 10 Problems
  • 116 Finishers

Problem Recent Solvers18

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page