search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.5 KiB
1.5 KiB
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f3d61000cf542c50fee8 | 5 | Problem 105: Special subset sums: testing | 问题105:特殊子集总和:测试 |
Description
Instructions
Tests
tests:
- text: <code>euler105()</code>应返回73702。
testString: assert.strictEqual(euler105(), 73702);
Challenge Seed
function euler105() {
// Good luck!
return true;
}
euler105();
Solution
// solution required
/section>