* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
847 B
847 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f4621000cf542c50ff75 | 问题246:切线到椭圆 | 5 | problem-246-tangents-to-an-ellipse |
--description--
椭圆的定义是:给定一个圆心c,其中心为M,半径为r,点G为d(G,M)
椭圆点的构造如下所示。
给定的是M(-2000,1500)和G(8000,1500)。给定也是具有中心M和半径15000的圆c。与G和c等距的点的轨迹形成椭圆e。从外部的点P开始,绘制两个切线t1和t2到椭圆。让t1和t2接触椭圆的点为R和S.
对于多少格点P,角度RPS是否大于45度?
--hints--
euler246()
应该返回810834388。
assert.strictEqual(euler246(), 810834388);
--seed--
--seed-contents--
function euler246() {
return true;
}
euler246();
--solutions--
// solution required