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