852 B
852 B
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3fe1000cf542c50ff11 | 5 | 问题146:调查素数模式 |
Description
所有小于1.5亿的整数n的总和是多少?
Instructions
Tests
tests:
- text: <code>euler146()</code>应该返回676333270。
testString: assert.strictEqual(euler146(), 676333270);
Challenge Seed
function euler146() {
// Good luck!
return true;
}
euler146();
Solution
// solution required
/section>