--- id: 5900f3bb1000cf542c50fece challengeType: 5 title: 'Problem 79: Passcode derivation' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler79(), 73162890, "euler79() should return 73162890.");' ```
## Challenge Seed
```js function euler79() { // Good luck! return true; } euler79(); ```
## Solution
```js // solution required ```