--- id: 5900f3e51000cf542c50fef8 challengeType: 5 title: 'Problem 121: Disc game prize fund' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler121(), 2269, "euler121() should return 2269.");' ```
## Challenge Seed
```js function euler121() { // Good luck! return true; } euler121(); ```
## Solution
```js // solution required ```