其他分享
首页 > 其他分享> > LeetCode2021.3.17-各位相加

LeetCode2021.3.17-各位相加

作者:互联网

递归的简单应用,之后补上好点的代码。

# 给定一个非负整数 num,反复将各个位上的数字相加,直到结果为一位数。
# 示例:
# 输入: 38
# 输出: 2
# 解释: 各位相加的过程为:3 + 8 = 11, 1 + 1 = 2。 由于2 是一位数,所以返回 2。
class Solution(object):
    def addDigits(self, num):
        """
        :type num: int
        :rtype: int
        """
        count = sum([int(x) for x in list(str(num))])
        if count >= 10:
            return Solution.addDigits(self, count)
        else:
            return count

标签:count,17,int,相加,LeetCode2021.3,num,一位数,self
来源: https://blog.csdn.net/xbn20000224/article/details/114946668