You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
268 B

package solutions
func isInteresting(n int) bool {
s := 0
for n > 0 {
s += n % 10
n /= 10
}
if s%7 == 0 {
return true
}
return false
}
func InterestingNumber(n int) int {
for n > 0 {
if isInteresting(n) == true {
return n
}
n++
}
return -1
}