码迷,mamicode.com
首页 > 编程语言 > 详细

[codewars_python]Sum of Digits / Digital Root

时间:2019-04-05 18:24:09      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:solution   The   val   ...   return   class   and   head   red   

Instructions

In this kata, you must create a digital root function.

A digital root is the recursive sum of all the digits in a number. Given n, take the sum of the digits of n. If that value has more than one digit, continue reducing in this way until a single-digit number is produced. This is only applicable to the natural numbers.

Here‘s how it works:

digital_root(16)
=> 1 + 6
=> 7

digital_root(942)
=> 9 + 4 + 2
=> 15 ...
=> 1 + 5
=> 6

digital_root(132189)
=> 1 + 3 + 2 + 1 + 8 + 9
=> 24 ...
=> 2 + 4
=> 6

digital_root(493193)
=> 4 + 9 + 3 + 1 + 9 + 3
=> 29 ...
=> 2 + 9
=> 11 ...
=> 1 + 1
=> 2

My solution:

def digital_root(n):
    lst = [int(x) for x in str(n)]
    result = sum(lst)
    if result < 10:
        return result
    else:
        return digital_root(result)

Best solution:

def digital_root(n):
    return n if n < 10 else digital_root(sum(map(int,str(n))))

 

[codewars_python]Sum of Digits / Digital Root

标签:solution   The   val   ...   return   class   and   head   red   

原文地址:https://www.cnblogs.com/icris/p/10659236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!