172 Factorial Trailing Zeroes
Given an integern, return the number of trailing zeroes inn!.
Example 1:
Example 2:
Note:Your solution should be in logarithmic time complexity.
这题cc189有然后两年前做过。但感觉纯数学就一直没写,但看到在软软的面经里,还是写写吧。因为要找0的数目,那么就是找10的数目,10 = 2 X 5, 而且2的数目比5多,所以我们其实是在数这个n里5的数目。
Last updated