search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.0 KiB
1.0 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4a21000cf542c50ffb5 | 5 | Problem 310: Nim Square | 问题310:尼姆广场 |
Description
如果0≤a≤b≤c≤100000,则查找下一个玩家的失落位置数。
Instructions
Tests
tests:
- text: <code>euler310()</code>应该返回2586528661783。
testString: assert.strictEqual(euler310(), 2586528661783);
Challenge Seed
function euler310() {
// Good luck!
return true;
}
euler310();
Solution
// solution required
/section>