Excel Sheet Column Title
Given an integer n, return the number of trailing zeroes in n!.
(求 n! 的末尾0的个数)
Example:
1. 计算从1-n中含2,5的因子个数。
题目中要求在时间复杂度为 O(log(n)) 的情况下完成。计算2和5的个数,实际上只需要计算5的个数,因为从1-n中因子2的个数一定大于5的个数。具体实现过程(循环 & 递归)如下:
1 | class Solution: |
Given an integer n, return the number of trailing zeroes in n!.
(求 n! 的末尾0的个数)
Example:
题目中要求在时间复杂度为 O(log(n)) 的情况下完成。计算2和5的个数,实际上只需要计算5的个数,因为从1-n中因子2的个数一定大于5的个数。具体实现过程(循环 & 递归)如下:
1 | class Solution: |