Skip to content

Commit e4c48fa

Browse files
committed
comments
1 parent dce5d4d commit e4c48fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: euler_030.py

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ def sumOfDigitsToPower(number, power):
1515
return sum([int(x)**power for x in str(number)])
1616

1717
overallSum = 0
18+
# I increased this times 10 at a time until it yielded no additional numbers
19+
# I did not analyze why that is.
1820
UPPER_LIMIT = 1000000
1921
POWER = 5
2022

0 commit comments

Comments
 (0)