1.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f5061000cf542c510017 | 5 | Problem 409: Nim Extreme | 问题409:Nim Extreme |
Description
求W(10 000 000)mod 1 000 000 007。
Instructions
Tests
tests:
- text: <code>euler409()</code>应该返回253223948。
testString: assert.strictEqual(euler409(), 253223948);
Challenge Seed
function euler409() {
// Good luck!
return true;
}
euler409();
Solution
// solution required
/section>