search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.3 KiB
1.3 KiB
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f50e1000cf542c510020 | 5 | Problem 416: A frog"s trip | 问题416:青蛙的旅行 |
Description
令F(m,n)为青蛙可以通过的方式的数目,这样最多一个正方形就不会出现。 例如,F(1,3)= 4,F(1,4)= 15,F(1,5)= 46,F(2,3)= 16和F(2,100)mod 109 = 429619151。
查找F的最后9位数字(10,1012)。
Instructions
Tests
tests:
- text: <code>euler416()</code>应该返回898082747。
testString: assert.strictEqual(euler416(), 898082747);
Challenge Seed
function euler416() {
// Good luck!
return true;
}
euler416();
Solution
// solution required
/section>