2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 5900f37b1000cf542c50fe8e
|
|
|
|
|
challengeType: 5
|
|
|
|
|
videoUrl: ''
|
|
|
|
|
localeTitle: 问题15:格子路径
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Description
|
2019-05-20 21:28:20 +03:00
|
|
|
|
<section id="description">从2×2网格的左上角开始,只能向右和向下移动,右下角有6条路线。 <img class="img-responsive center-block" alt="6 2乘2网格的图表显示了右下角的所有路线" src="https://cdn-media-1.freecodecamp.org/imgr/1Atixoj.gif"><p>通过给定的<code>gridSize</code>有多少这样的路由? </p></section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
|
<section id="instructions">
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
|
|
```yml
|
|
|
|
|
tests:
|
|
|
|
|
- text: <code>latticePaths(4)</code>应该返回70。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert.strictEqual(latticePaths(4), 70);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
- text: <code>latticePaths(9)</code>应该返回48620。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert.strictEqual(latticePaths(9), 48620);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
- text: <code>latticePaths(20)</code>应该返回137846528820。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert.strictEqual(latticePaths(20), 137846528820);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
function latticePaths(gridSize) {
|
|
|
|
|
// Good luck!
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
latticePaths(4);
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
// solution required
|
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
|
|
|
|
/section>
|