LeetCode 172. Factorial Trailing Zeroes
题目描述:
Given an integer n, return the number of trailing zeroes in n!.
**Note: **Your solution should be in logarithmic time complexity.
统计结果中因子5的个数.
1 | class Solution { |
题目描述:
Given an integer n, return the number of trailing zeroes in n!.
**Note: **Your solution should be in logarithmic time complexity.
统计结果中因子5的个数.
1 | class Solution { |