Medium
Given an integer n, return the number of trailing zeroes in n! (n factorial).
n
n!
Input: n = 3 Output: 0 Explanation: 3! = 6, no trailing zero.
Input: n = 5 Output: 1 Explanation: 5! = 120.
Input: n = 0 Output: 0