码迷,mamicode.com
首页 > 编程语言 > 详细

关于python最大递归深度 - 998

时间:2018-04-30 00:00:18      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:出现   while   等于   数字   getting   obj   recursion   今天   block   

今天LeetCode的时候暴力求解233

  • 问题:

给定一个整数 n,计算所有小于等于 n 的非负数中数字1出现的个数。

例如:

给定 n = 13,

返回 6,因为数字1出现在下数中出现:1,10,11,12,13。

  • 代码:
class Solution:
    def __init__(self):
        self.key = ‘1‘
        self.result = 0

    def countDigitOne(self, n):
        """
        :type n: int
        :rtype: int
        """
        if n < 1:
            return self.result
        self.result += str(n).count(self.key)
        if n > 0:
            self.countDigitOne(n-1)
        return self.result

s = Solution()
print(s.countDigitOne(11221))
  • 错误:

maximum recursion depth exceeded while getting the str of an object

  • 寻找python最大递归深度
class Solution:
    def __init__(self):
        self.key = ‘1‘
        self.result = 0

    def countDigitOne(self, n):
        """
        :type n: int
        :rtype: int
        """
        if n < 1:
            return self.result
        self.result += str(n).count(self.key)
        if n > 0:
            self.countDigitOne(n-1)
        return self.result

s = Solution()
for i in range(0,1000000):
    print(i)
    print(s.countDigitOne(i))

输出 998,然后报错,最大递归深度找到了,还是安心用while吧~

关于python最大递归深度 - 998

标签:出现   while   等于   数字   getting   obj   recursion   今天   block   

原文地址:https://www.cnblogs.com/bincoding/p/8972238.html

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