885 B
885 B
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f4d01000cf542c50ffe2 | 5 | 问题355:最大互质子集 |
Description
给出Co(30)= 193和Co(100)= 1356。
找到Co(200000)。
Instructions
Tests
tests:
- text: <code>euler355()</code>应返回1726545007。
testString: assert.strictEqual(euler355(), 1726545007);
Challenge Seed
function euler355() {
// Good luck!
return true;
}
euler355();
Solution
// solution required
/section>