LeetCode 258 Add Digits(数字相加,数字根)

翻译

给定一个非负整型数字,重复相加其所有的数字直到最后的结果只有一位数。

例如:

给定sum = 38,这个过程就像是:3 + 8 = 11,1 + 1 = 2,因为2只有一位数,所以返回它。

紧接着:

你可以不用循环或递归在O(1)时间内完成它吗?

原文

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 = 11, 1 + 1 = 2. Since 2 has only one digit, return it.

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

分析

其实我并不会写,循环和递归都不能用……我还能怎么办呐。

然后看了LeetCode上给的提示,看了维基百科的一篇文章:Digital root。

有了这个的话,就很容易了;具体这个公式的细节,大家自己参看维基吧,因为篇幅过长就不翻译了。

代码

class Solution {
public:
    int floor(int x) {
        return (x - 1) / 9;
    }
    int addDigits(int num) {
        return num - 9 * floor(num);
    }
};
时间: 2024-12-04 02:00:58

LeetCode 258 Add Digits(数字相加,数字根)的相关文章

[LeetCode]--258. Add Digits

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 = 11, 1 + 1 = 2. Since 2 has only one digit, return it. Follow up: Could you do it without an

[LeetCode] Add Digits - 数字各个位数求和

题目概述: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 = 11, 1 + 1 = 2. Since 2 has only one digit, return it.Follow up:Could you do it without a

求和-如何将两个字符数组里的数字相加得出两组数的和

问题描述 如何将两个字符数组里的数字相加得出两组数的和 char a[1000],b[1000] 两个数组里都是数字 解决方案 void Add(char a[],char b[],char d[]) { char c[10001]; int lena=strlen(a),lenb=strlen(b); int i,j,len; len=lena>lenb?lena:lenb; len++; c[0]=''; for(i=1;i<=len;i++)c[i]='0'; for(i=1;i<

[LeetCode] Monotone Increasing Digits 单调递增数字

Given a non-negative integer N, find the largest number that is less than or equal to N with monotone increasing digits. (Recall that an integer has monotone increasing digits if and only if each pair of adjacent digits x and y satisfy x <= y.)   Exa

LeetCode 2 Add Two Numbers

翻译: 给你两个表示两个非负数字的链表.数字以相反的顺序存储,其节点包含单个数字.将这两个数字相加并将其作为一个链表返回. 输入: (2 -> 4 -> 3) + (5 -> 6 -> 4) 输出: 7 -> 0 -> 8 原题: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of

leetcode 002 add two numbers C语言

问题描述 leetcode 002 add two numbers C语言 struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2) { struct ListNode *l, *p; l = (struct ListNode*)malloc(sizeof(struct ListNode)); l->val = l1->val + l2->val; p = l; l1 = l1->next; l

java-有一个数组,数组里任意个数数字相加等于一固定数值,求出所有可能性的任意数字组合?

问题描述 有一个数组,数组里任意个数数字相加等于一固定数值,求出所有可能性的任意数字组合? 最近遇到一道java算法题,给定一个数组,求出数组里任意个数相加等于一固定数值,求出所有可能性的任意数字组合?求解答,用最原始的算法做出这道题,求大神指点,大神给出答案? 解决方案 /** * * @param arr * 数组 * @param num * 固定值 * @return 组合 */ public static List a(int[] arr, int num) { List strLis

php通过排列组合实现1到9数字相加都等于20的方法_php技巧

本文实例讲述了php通过排列组合实现1到9数字相加都等于20的方法.分享给大家供大家参考.具体实现方法如下: <?php set_time_limit(0); /* 函数说明:huoqu_zhuhe($eq,$jiashu,$isone=0) 参数说明:$eq---几个数相加的总和: $jiashu-------加数数组:$jiashu=array(1,2,3,4,5,6,7,8,9),可以使用的加数: $isone---是否要每次使用不同的加数,唯一性,1是 0 不,默认1 返回类型:数组,数

js实现连个数字相加而不是拼接的方法

 这篇文章主要介绍了js如何实现连个数字相加而不是拼接,需要的朋友可以参考下 实现e1 的值 与 e2 相加   代码如下: var e1= document.getElementById('textbox1').value;  var e2 = document.getElementById("textbox2").value;  document.getElementById('textbox4').value = parseInt(e1)+parseInt(e2);