Leetcode#172. Factorial Trailing Zeroes
Problem
Given an integer n
, return the number of trailing zeroes in n!
.
Note that n! = n * (n - 1) * (n - 2) * ... * 3 * 2 * 1
.
Example 1:
1 | Input: n = 3 |
Example 2:
1 | Input: n = 5 |
Example 3:
1 | Input: n = 0 |
Constraints:
0 <= n <= 10^4
Follow up: Could you write a solution that works in logarithmic time complexity?
Solve
這題先搞懂 trailing zeroes,是指尾巴的0
要計算尾巴有幾個0很簡單就是算其中乘了幾次(5*2)
由於每次乘到5前,一定有2,所以找5有幾個就好
法1
1 |
|
Time Complexity : O(n)
當然這題不需要這麼麻煩
法2
用數學的方式
其實這題數學的思考方法沒這麼麻煩,直接計算幾個5就好
只需要注意當超過5的指數項,會增多
所以也不用O(n)
ex:
n = 10 2個5
n = 25 6個5
1 | class Solution: |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論