search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
910 B
910 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3fe1000cf542c50ff11 | 5 | Problem 146: Investigating a Prime Pattern | 问题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>