美文网首页
13 机器人运动范围

13 机器人运动范围

作者: 土味老猪 | 来源:发表于2018-06-09 15:41 被阅读0次

    没有考虑重复范围,误。。

    class Solution():
        def sum_digits(slef,n):
            s = 0
            while n:
                s += n % 10
                n //= 10
            return s
    
        def findpath(self,start,k):
            if self.sum_digits(start[0])+ self.sum_digits(start[1]) < k:
                return 1+self.findpath([start[0]+1,start[1]],k)+self.findpath([start[0],start[1]+1],k)
    
            else:
                return 0
    #test
    s = Solution()
    print(s.findpath([0,0],5))
    

    相关文章

      网友评论

          本文标题:13 机器人运动范围

          本文链接:https://www.haomeiwen.com/subject/yuiteftx.html