--- id: 5900f37b1000cf542c50fe8e challengeType: 5 title: 'Problem 15: Lattice paths' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(latticePaths(4), 70, "latticePaths(4) should return 70.");' - text: '' testString: 'assert.strictEqual(latticePaths(9), 48620, "latticePaths(9) should return 48620.");' - text: '' testString: 'assert.strictEqual(latticePaths(20), 137846528820, "latticePaths(20) should return 137846528820.");' ```
## Challenge Seed
```js function latticePaths(gridSize) { // Good luck! return true; } latticePaths(4); ```
## Solution
```js // solution required ```