mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-20 16:00:53 -04:00
1.4 KiB
1.4 KiB
id, challengeType, title
| id | challengeType | title |
|---|---|---|
| 5900f3cc1000cf542c50fede | 5 | Problem 95: Amicable chains |
Description
Instructions
Tests
tests:
- text: <code>euler95()</code> should return 14316.
testString: 'assert.strictEqual(euler95(), 14316, "<code>euler95()</code> should return 14316.");'
Challenge Seed
function euler95() {
// Good luck!
return true;
}
euler95();
Solution
// solution required