258. Add Digitscss
Given a non-negative integer num
, repeatedly add all its digits until the result has only one digit.java
Example:git
Input: Output: 2 Explanation: The process is like: , . Since has only one digit, return it. 383 + 8 = 111 + 1 = 22
Follow up:
Could you do it without any loop/recursion in O(1) runtime?oop
package leetcode.easy; public class AddDigits { public int addDigits(int num) { if (num == 0) { return 0; } else { return ((num - 1) % 9) + 1; } } @org.junit.Test public void test() { System.out.println(addDigits(38)); } }