--- id: 5900f37b1000cf542c50fe8e challengeType: 5 title: 'Problem 15: Lattice paths' videoUrl: '' localeTitle: 问题15:格子路径 --- ## Description
从2×2网格的左上角开始,只能向右和向下移动,右下角有6条路线。 6 2乘2网格的图表显示了右下角的所有路线

通过给定的gridSize有多少这样的路由?

## Instructions
## Tests
```yml tests: - text: latticePaths(4)应该返回70。 testString: 'assert.strictEqual(latticePaths(4), 70, "latticePaths(4) should return 70.");' - text: latticePaths(9)应该返回48620。 testString: 'assert.strictEqual(latticePaths(9), 48620, "latticePaths(9) should return 48620.");' - text: latticePaths(20)应该返回137846528820。 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 ```