博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每天一道LeetCode--172. Factorial Trailing Zeroes
阅读量:6837 次
发布时间:2019-06-26

本文共 358 字,大约阅读时间需要 1 分钟。

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

Note: Your solution should be in logarithmic time complexity.

 此题是求阶乘后面零的个数。

public class Solution {    public int trailingZeroes(int n) {        int t=0;        while(n!=0){            n/=5;            t+=n;        }        return t;    }}

 

转载于:https://www.cnblogs.com/xiaoduc-org/p/6082097.html

你可能感兴趣的文章
Differentiation 导数和变化率
查看>>
UStore-自定义JDF文件格式输出
查看>>
(转)理解android.intent.action.MAIN 与 android.intent.category.LAUNCHER
查看>>
Asp.net core 学习笔记 ( Web Api )
查看>>
构造函数(包含this关键字的简单应用)
查看>>
最烦人的正则表达式记忆口诀
查看>>
leetcode Merge Two Sorted Lists
查看>>
[oracle]常用SQL汇总
查看>>
添加支付宝支付按钮,实现捐赠本站
查看>>
leetcode897
查看>>
莫比乌斯函数+莫比乌斯反演
查看>>
90%的用户都不知道手机内部功能
查看>>
js获取当前浏览器地址栏的链接,然后在链接后面加参数
查看>>
设为首页 收藏(IE可用)
查看>>
Cesium 创建Geometry
查看>>
OpenGL的几何变换4之内观察全景图
查看>>
@RenderBody、@RenderSection、@RenderPage、Html.RenderPartial、Html.RenderAction的作用和区别...
查看>>
OCIEnvCreate failed with return code -1 but error message text was not available with ODP.net
查看>>
mysql日常错误信息解决方法:InnoDB: and force InnoDB to continue crash recovery here.
查看>>
jQuery中的动画
查看>>