* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
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