810 B
810 B
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3c11000cf542c50fed4 | 5 | 问题85:计算矩形 |
Description
虽然不存在包含正好两百万个矩形的矩形网格,但是找到最近解的网格区域。
Instructions
Tests
tests:
- text: <code>euler85()</code>应该返回2772。
testString: assert.strictEqual(euler85(), 2772);
Challenge Seed
function euler85() {
// Good luck!
return true;
}
euler85();
Solution
// solution required
/section>