--- id: 5900f49b1000cf542c50ffad challengeType: 5 title: 'Problem 302: Strong Achilles Numbers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler302(), 1170060, "euler302() should return 1170060.");' ```
## Challenge Seed
```js function euler302() { // Good luck! return true; } euler302(); ```
## Solution
```js // solution required ```