fix: replace .chinese.md extension with .md

This commit is contained in:
Oliver Eyton-Williams
2020-09-29 19:06:51 +02:00
parent 2b9e38a17b
commit 41b7a33100
1588 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
---
id: 5900f50e1000cf542c510020
challengeType: 5
title: 'Problem 416: A frog"s trip'
videoUrl: ''
localeTitle: 问题416青蛙的旅行
---
## Description
<section id="description">
一排n个正方形在最左边的正方形中包含一个青蛙。 通过连续跳跃,青蛙到达最右边的方块,然后回到最左边的方块。 在向外旅行中,他向右跳一个,两个或三个方块,在向家旅行中,他以类似的方式向左跳。 他不能跳出广场。 我已经重复了两次往返旅行。
令Fmn为青蛙可以通过的方式的数目这样最多一个正方形就不会出现。
例如F13= 4F14= 15F15= 46F23= 16和F2100mod 109 = 429619151。
查找F的最后9位数字101012
</section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler416()</code>应该返回898082747。
testString: assert.strictEqual(euler416(), 898082747);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler416() {
// Good luck!
return true;
}
euler416();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>