172. Factorial Trailing Zeroes

xiaoxiao2021-02-28  104

Given an integer n, return the number of trailing zeroes in n!.

Note: Your solution should be in logarithmic time complexity.

《编程之美》2.2不要被阶乘吓到。

class Solution { public: int trailingZeroes(int n) { int res = 0; while(n){ res += n / 5; n /= 5; } return res; } };
转载请注明原文地址: https://www.6miu.com/read-64403.html

最新回复(0)