search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.3 KiB
1.3 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3b71000cf542c50feca | 5 | Problem 75: Singular integer right triangles | 问题75:奇异整数直角三角形 |
Description
Instructions
Tests
tests:
- text: <code>euler75()</code>应返回161667。
testString: assert.strictEqual(euler75(), 161667);
Challenge Seed
function euler75() {
// Good luck!
return true;
}
euler75();
Solution
// solution required
/section>