search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4881000cf542c50ff9a | 5 | Problem 283: Integer sided triangles for which the area * perimeter ratio is integral | 问题283:面积*周长比为整数的整数边三角形 |
Description
求出面积/周长比等于不超过1000的正整数的所有整数边三角形的周长总和。
Instructions
Tests
tests:
- text: <code>euler283()</code>应该返回28038042525570324。
testString: assert.strictEqual(euler283(), 28038042525570324);
Challenge Seed
function euler283() {
// Good luck!
return true;
}
euler283();
Solution
// solution required
/section>