Given an integer n, return the number of trailing zeroes in n!. Note: Your solution should be in logarithmic time complexity. 1234567891011 class Solution {public: int (int n) { int res = 0; while (n) { res += n / 5; n /= 5; } return res; }}; 赞微海报分享
近期评论