* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
967 B
967 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4941000cf542c50ffa7 | 5 | Problem 296: Angular Bisector and Tangent | 问题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