File tree 1 file changed +5
-5
lines changed
project_euler/problem_095
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
2
Project Euler Problem: https://projecteuler.net/problem=95
3
3
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
7
7
amicable chain under a given limit.
8
8
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
11
11
chain.
12
12
"""
13
13
You can’t perform that action at this time.
0 commit comments