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

LintCode刷题记录

时间:2019-02-22 21:24:00      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:size   you   for   The   算数   刷题记录   int   git   计算   

3.统计数字

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

class Solution:
"""
@param k: An integer
@param n: An integer
@return: An integer denote the count of digit k in 1..n
"""
def digitCounts(self, k, n):
# write your code here
times = 0

for i in range(n+1):
item = str(i)
while len(item) > 0:
if item[0:1] == str(k):
times += 1
item = item[1:]
return times

 

 

LintCode刷题记录

标签:size   you   for   The   算数   刷题记录   int   git   计算   

原文地址:https://www.cnblogs.com/longchaos/p/10420627.html

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