Leetcode刷题记录[python]——258 Add Digits

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题记录[python]——258 Add Digits相关的知识,希望对你有一定的参考价值。

一、前言

  做这题有个小收获,关于Digital root的解法,有个极方便的小公式:

技术分享

 

二、题258 Add Digits

  Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.

class Solution(object):
    def addDigits(self, num):
        """
        :type num: int
        :rtype: int
        """
        if num<=9:
            return num
        else:
            a=(num-1)/9
            if a>=0:
                a=int(a)
            else:
                a=int(a)-1
            new_num=num-9*a
            return new_num

  然后在做后一道关于求二叉树最大深度的问题时,参考了一些优秀的解法得到点启发,写了另一种更简单明了的解法:

class Solution(object):
    def addDigits(self, num):
        """
        :type num: int
        :rtype: int
        """
        if num>=10:
            re=num%10
            qu=(num-re)/10
            new_num=re+qu
            return self.addDigits(new_num)
        else:
            return num

 

以上是关于Leetcode刷题记录[python]——258 Add Digits的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题记录[python]——344 Reverse String

Leetcode刷题记录[python]——283 Move Zeroes

Leetcode刷题记录[python]——561 Array Partition I

leetcode刷题记录(JAVA&Python)

Leetcode刷题记录[python]——349 Intersection of Two Arrays

Leetcode刷题记录[python]——104 Maximum Depth of Binary Tree