[leetcode]258.Add Digits

來源:互聯網
上載者:User

標籤: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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.