--- id: 5900f4ba1000cf542c50ffcd challengeType: 5 title: 'Problem 334: Spilling the beans' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler334(), 150320021261690850, "euler334() should return 150320021261690850.");' ```
## Challenge Seed
```js function euler334() { // Good luck! return true; } euler334(); ```
## Solution
```js // solution required ```