--- id: 5900f4c21000cf542c50ffd4 challengeType: 5 title: 'Problem 340: Crazy Function' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler340(), 291504964, "euler340() should return 291504964.");' ```
## Challenge Seed
```js function euler340() { // Good luck! return true; } euler340(); ```
## Solution
```js // solution required ```