leetcode Add digits

来源:互联网 发布:莫知我哀特殊句式 编辑:程序博客网 时间:2024/06/14 14:41

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 = 111 + 1 = 2. Since 2 has only one digit, return it.

思路:

digit root 问题:

公式就是1+(n-1)%9

https://en.wikipedia.org/wiki/Digital_root#Congruence_formula
int addDigits(int num) {    return (1+(num-1)%9);}




0 0
原创粉丝点击