
通过给定的gridSize有多少这样的路由?
latticePaths(4)应该返回70。
testString: assert.strictEqual(latticePaths(4), 70);
- text: latticePaths(9)应该返回48620。
testString: assert.strictEqual(latticePaths(9), 48620);
- text: latticePaths(20)应该返回137846528820。
testString: assert.strictEqual(latticePaths(20), 137846528820);
```