LeetCode P258 Add Digits 题解
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?
题意:
输入一个数字,将这个数字所有位数相加一直到得到一个小于10的数,返回这个数
希望复杂度为O(1)