forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_172.java
More file actions
31 lines (29 loc) · 652 Bytes
/
_172.java
File metadata and controls
31 lines (29 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.fishercoder.solutions;
/**
* 172. Factorial Trailing Zeroes
*
* Given an integer n, return the number of trailing zeroes in n!.
*
* Example 1:
* Input: 3
* Output: 0
* Explanation: 3! = 6, no trailing zero.
*
* Example 2:
* Input: 5
* Output: 1
* Explanation: 5! = 120, one trailing zero.
* Note: Your solution should be in logarithmic time complexity.
*/
public class _172 {
public static class Solution1 {
public int trailingZeroes(int n) {
int result = 0;
while (n > 4) {
n /= 5;
result += n;
}
return result;
}
}
}