--- id: 5900f4b11000cf542c50ffc4 challengeType: 5 title: 'Problem 325: Stone Game II' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler325(), 54672965, "euler325() should return 54672965.");' ```
## Challenge Seed
```js function euler325() { // Good luck! return true; } euler325(); ```
## Solution
```js // solution required ```