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