Skip to content

Commit 9c25148

Browse files
committed
fix: Update proof link to a stable Rosetta Code source
1 parent beda6fc commit 9c25148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project_euler/problem_034/sol1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def solution() -> int:
3131
40730
3232
"""
3333
# The upper bound is 1,499,999, as shown in this proof:
34-
# https://math.stackexchange.com/a/112383/89462
34+
# https://rosettacode.org/wiki/Talk:Factorions
3535
limit = 1_499_999
3636
return sum(i for i in range(3, limit) if sum_of_digit_factorial(i) == i)
3737

0 commit comments

Comments
 (0)