[Leetcode] Add Digits

来源:互联网 发布:usb端口检测软件 编辑:程序博客网 时间:2024/04/18 20:55

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): https://en.wikipedia.org/wiki/Digital_root


class Solution {public:    int addDigits(int num) {        return 1+(num-1)%9;    }};


0 0
原创粉丝点击