【leetcode】258. Add Digits

题目如下:

解题思路:题目很简单,没啥说的。Follow up 我还没想出来。

代码如下:

class Solution(object):
    def addDigits(self, num):
        """
        :type num: int
        :rtype: int
        """
        while num >= 10:
            num = sum([int(x) for x in list(str(num))])
        return num

 

posted @ 2018-08-15 08:48  seyjs  阅读(115)  评论(0编辑  收藏  举报