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

LintCode题解之统计数字

时间:2017-11-26 11:03:06      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:.com   return   情况   ntc   计数   class   lint   ima   while   

技术分享图片

 

直接硬搜就可以了,只是需要考虑k为0的情况。

public class Solution {
    
    /*
     * @param : An integer
     * @param : An integer
     * @return: An integer denote the count of digit k in 1..n
     */
    public int digitCounts(int k, int n) {
        
        int ans = (k==0 ? 1 : 0);
        
        for(int i=0; i<=n; i++){
            ans += resolve(i, k);
        }
        
        return ans;
    }
    
    private int resolve(int n, int m){
        int res = 0;
        while(n>0){
            if(n%10==m) res++;
            n/=10;
        }
        return res;
    }
    
};

  

 

题目来源: http://www.lintcode.com/zh-cn/problem/digit-counts/#

LintCode题解之统计数字

标签:.com   return   情况   ntc   计数   class   lint   ima   while   

原文地址:http://www.cnblogs.com/cc11001100/p/7898185.html

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