3. 统计数字中等

Posted chenamao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3. 统计数字中等相关的知识,希望对你有一定的参考价值。

计算数字k在0到n中的出现的次数,k可能是0~9的一个值。

思路:暴力枚举。

代码:

class Solution
{
    public:
        /*
         * @param : An integer
         * @param : An integer
         * @return: An integer denote the count of digit k in 1..n
         */
        int digitCounts(int k, int n)
        {
            // write your code here
            int cnt=0;
            for(int i=0;i<=n;i++)
            {
                int j=i;
                if(j==0&&k==0) cnt++;
                while(j)
                {
                    if(j%10==k) cnt++;
                    j/=10;
                }
            }
            return cnt;
        }
};

 

以上是关于3. 统计数字中等的主要内容,如果未能解决你的问题,请参考以下文章

⭐算法入门⭐《堆》中等03 —— LeetCode 373. 查找和最小的K对数字

Leetcode习题解统计

leetcode中等935骑士拨号器

JavaScript笔试题(js高级代码片段)

leetcode中等1395统计作战单位数

leetcode中等2049统计最高分的节点数目