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