* 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>
829 B
829 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f4311000cf542c50ff43 | 问题195:内切三角形的圆形,一个角度为60度 | 5 | problem-195-inscribed-circles-of-triangles-with-one-angle-of-60-degrees |
--description--
让我们称一个整数边三角形,其中一个角度为60度,一个60度的三角形。设r是这样的60度三角形的内切圆的半径。有1234个60度三角形,其中r≤100。设T(n)是60度三角形的数量,其中r≤n,因此T(100)= 1234,T(1000)= 22767,和T( 10000)= 359912。
找到T(1053779)。
--hints--
euler195()
应返回75085391。
assert.strictEqual(euler195(), 75085391);
--seed--
--seed-contents--
function euler195() {
return true;
}
euler195();
--solutions--
// solution required