Trailing Zeros in Factorial
Given an integer A, return the number of trailing zeroes in A!.
Note: Your solution should be in logarithmic time complexity. **Problem Constraints**
1 <= A <= 10000 **Input Format**
First and only argumment is integer A. **Output Format**
Return an integer, the answer to the problem. **Example Input**
Input 1:
Input 2:
**Example Output**
Output 1:
Output 2:
**Example Explanation**
Explanation 1:
Explanation 2:
Last updated