-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddDigits.go
53 lines (43 loc) · 908 Bytes
/
AddDigits.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
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.
Follow up:
Could you do it without any loop/recursion in O(1) runtime?
*/
package main
import (
"fmt"
)
func main() {
tests := []int{38}
for _, test := range tests {
fmt.Println(addDigits(test))
}
}
func addDigits(num int) int {
// if num has >1 decimal digits
for num > 9 {
// break num into decimal digits
digits := []int{}
rem := num % 10
num = num / 10
digits = append(digits, rem)
for num > 0 {
rem = num % 10
num = num / 10
digits = append(digits, rem)
}
// calculate total of num's decimal digits
tot := 0
for _, d := range digits {
tot += d
}
// replace num with digit total
num = tot
}
return num
}