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

Add Digits

时间:2017-09-06 10:11:31      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   amp   loop   for   result   without   ret   process   pre   

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.

Follow up:
Could you do it without any loop/recursion in O(1) runtime?

 

分析:求各位数之和,并要求加到只有一位数为止。

思路:因为是加法,很容易找规律,直接挨个列出结果。

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

基本可以确定规律 (num-1)%9+1

JAVA CODE

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

 

Add Digits

标签:style   amp   loop   for   result   without   ret   process   pre   

原文地址:http://www.cnblogs.com/baichangfu/p/7482764.html

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