reed-qu / leetcode-cn

leetcode-cn上面算法题的解题思路
MIT License
1 stars 0 forks source link

172. 阶乘后的零 #78

Open reed-qu opened 4 years ago

reed-qu commented 4 years ago

原始问题:172. 阶乘后的零

给定一个整数 n,返回 n! 结果尾数中零的数量。

示例 1:

输入: 3
输出: 0
解释: 3! = 6, 尾数中没有零。

示例 2:

输入: 5
输出: 1
解释: 5! = 120, 尾数中有 1 个零.

说明: 你算法的时间复杂度应为 O(log n) 。

解题示例


class Solution:
    def trailingZeroes(self, n: int) -> int:
        pass
reed-qu commented 4 years ago

FactorialTrailingZeroes.py