--- id: 5900f5091000cf542c51001b challengeType: 5 title: 'Problem 408: Admissible paths through a grid' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler408(), 299742733, "euler408() should return 299742733.");' ```
## Challenge Seed
```js function euler408() { // Good luck! return true; } euler408(); ```
## Solution
```js // solution required ```