--- id: 5900f5361000cf542c510049 challengeType: 5 title: 'Problem 458: Permutations of Project' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler458(), 423341841, "euler458() should return 423341841.");' ```
## Challenge Seed
```js function euler458() { // Good luck! return true; } euler458(); ```
## Solution
```js // solution required ```