910 B
910 B
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f4941000cf542c50ffa7 | 5 | 问题296:角平分线和切线 |
Description
存在多少个周长不超过100000的三角形ABC,使得BE具有整数长度?
Instructions
Tests
tests:
- text: <code>euler296()</code>应该返回1137208419。
testString: assert.strictEqual(euler296(), 1137208419);
Challenge Seed
function euler296() {
// Good luck!
return true;
}
euler296();
Solution
// solution required
/section>