剑指Offer刷题笔记——整数中1出现的次数(从1到n整数中1出现的次数)

输入一个整数n,求从1到n这n个整数的十进制表示中1出现的次数。例如输入12,从1到12这些整数中包含1的数字有1,10,11和12,1一共出现了5次。

思路:https://cuijiahua.com/blog/2017/12/basis_31.html   

# -*- coding:utf-8 -*-
class Solution:
    def NumberOf1Between1AndN_Solution(self, n):
        # write code here
        count = 0
        i = 1
        while i <= n:
            a = n / i
            b = n % i
            count += (a+8) / 10 * i + (a % 10 == 1)*(b + 1)
            i *= 10
        return count

 

你可能感兴趣的:(剑指Offer刷题笔记——整数中1出现的次数(从1到n整数中1出现的次数))