search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.2 KiB
1.2 KiB
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f4a61000cf542c50ffb8 | 5 | Problem 313: Sliding game | 问题313:滑行游戏 |
Description
令S(m,n)代表完成游戏的最小移动次数。 例如,可以验证S(5.4)= 25。
正好有5482个网格,其中S(m,n)= p2,其中p <100是质数。
S(m,n)= p2有多少个网格,其中p <106是素数?
Instructions
Tests
tests:
- text: <code>euler313()</code>应该返回2057774861813004。
testString: assert.strictEqual(euler313(), 2057774861813004);
Challenge Seed
function euler313() {
// Good luck!
return true;
}
euler313();
Solution
// solution required
/section>