Skip to content

Commit 0d963a1

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ab3769c commit 0d963a1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

project_euler/problem_095/sol1.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
"""
22
Project Euler Problem: https://projecteuler.net/problem=95
33
4-
An amicable chain is a sequence of numbers where each number is the sum of the
5-
proper divisors of the previous one, and the chain eventually returns to the
6-
starting number. The problem is to find the smallest member of the longest
4+
An amicable chain is a sequence of numbers where each number is the sum of the
5+
proper divisors of the previous one, and the chain eventually returns to the
6+
starting number. The problem is to find the smallest member of the longest
77
amicable chain under a given limit.
88
9-
In this implementation, we aim to identify all amicable chains and find the
10-
one with the maximum length, while also returning the smallest member of that
9+
In this implementation, we aim to identify all amicable chains and find the
10+
one with the maximum length, while also returning the smallest member of that
1111
chain.
1212
"""
1313

0 commit comments

Comments
 (0)