--- id: 5900f52c1000cf542c51003d challengeType: 5 title: 'Problem 446: Retractions B' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler446(), 907803852, "euler446() should return 907803852.");' ```
## Challenge Seed
```js function euler446() { // Good luck! return true; } euler446(); ```
## Solution
```js // solution required ```