Add Digits

来源:互联网 发布:墨守成规淘宝店铺 编辑:程序博客网 时间:2024/05/21 14:58
Add Digits
Total Accepted: 46491 Total Submissions: 97958 Difficulty: Easy
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.


For example:


Given num = 38, the process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, return it.


class Solution(object):    def addDigits(self, num):        """        :type num: int        :rtype: int        """        result=sum(map(lambda x:int(x),unicode(num)))        if result<10:            return result        return self.addDigits(result)



看评论有更好的解法

0 0
原创粉丝点击