码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode#172 Factorial Trailing Zeroes

时间:2015-07-19 17:48:13      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:

Problem Definition:

  Given an integer n, return the number of trailing zeroes in n!.

  Note: Your solution should be in logarithmic time complexity.

 

Solution: 这题有丰富的数学背景,代码很简单。。

1 def trailingZeroes( n):
2         c=0
3         while n>=5:
4             n/=5
5             c+=n
6         return c

一行写法:

1 def trailingZeroes( n):
2         return n/5+trailingZeroes(n/5) if n>=5 else 0 

 

LeetCode#172 Factorial Trailing Zeroes

标签:

原文地址:http://www.cnblogs.com/acetseng/p/4658830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!