aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-261/pokgopun/go/ch-1.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-261/pokgopun/go/ch-1.go b/challenge-261/pokgopun/go/ch-1.go
index 984774f1d9..7ae5f846d1 100644
--- a/challenge-261/pokgopun/go/ch-1.go
+++ b/challenge-261/pokgopun/go/ch-1.go
@@ -57,7 +57,7 @@ import (
)
func sumDigit(n int) int {
- if n < 11 {
+ if n < 10 {
return n
}
s := 0