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