码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode]258.Add Digits

时间:2018-10-15 11:47:13      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:git   output   add   ted   proc   调整   inpu   only   until   

题目

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

标签:git   output   add   ted   proc   调整   inpu   only   until   

原文地址:https://www.cnblogs.com/shinjia/p/9789144.html

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