1. 程式人生 > >[leetcode]258.Add Digits

[leetcode]258.Add Digits

觀察 pub 枚舉 etc nat 規律 leetcode ret ESS

題目

Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.

Example:

Input: 38
Output: 2
Explanation: The process is like: 3 + 8 = 11, 1 + 1 = 2.
Since 2 has only one digit, return it.

解法一

思路

不斷地求新數字的 每個位 的和即可。

代碼

class Solution {
    public int addDigits(int num) {
        int res = num;
        while(res / 10 != 0) {
            num = res;
            res = 0;
            while(num != 0) {
                res += num % 10;
                num /= 10;
            }
        }
        return res;
    }
}

解法二

思路

我們來觀察1到20的規律:
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 1
11 2
12 3
13 4
14 5
15 6
16 7
17 8
18 9
19 1
20 2
根據上面的枚舉,我們可以發現,每9個數一個循環,所以我們直接對9取余即可,但是9對9取余為0,所以我們稍作調整即可,用(n-1)%9+1即可。

代碼

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

[leetcode]258.Add Digits