172. Factorial Trailing Zeroes
Given an integer n, return the number of trailing zeroes in n!.
Note that n! = n (n - 1) (n - 2) … 3 2 1.
1 | class Solution { |
172. Factorial Trailing Zeroes
Given an integer n, return the number of trailing zeroes in n!.
Note that n! = n (n - 1) (n - 2) … 3 2 1.
1 | class Solution { |