1.0 KiB
1.0 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3f61000cf542c50ff09 | 5 | 问题138:特殊的等腰三角形 |
Description
通过使用毕达哥拉斯定理,可以看出三角形的高度h =√(172-82)= 15,比基本长度小1。当b = 272且L = 305时,我们得到h = 273,这比基本长度多一个,这是第二个最小的等腰三角形,具有h = b±1的性质。找到12个最小等腰的ΣL h = b±1且b,L为正整数的三角形。
Instructions
Tests
tests:
- text: <code>euler138()</code>应该返回1118049290473932。
testString: assert.strictEqual(euler138(), 1118049290473932);
Challenge Seed
function euler138() {
// Good luck!
return true;
}
euler138();
Solution
// solution required
/section>