* 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>
995 B
995 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f4801000cf542c50ff92 | 问题275:平衡雕塑 | 5 | problem-275-balanced-sculptures |
--description--
让我们如下定义n阶平衡雕塑:由n + 1个瓷砖组成的多边形,称为块(n个瓷砖)和底座(剩余瓷砖);底座的中心位置(x = 0,y = 0);块的y坐标大于零(所以底座是唯一的最低瓦片);组合的所有块的质心具有等于零的x坐标。在对雕塑进行计数时,任何仅仅是关于y轴的反射的布置都不算是不同的。例如,6级平衡雕塑如下图所示;请注意,每对镜像(关于y轴)都算作一个雕塑:
有964个平衡雕塑,订单10和360505订单15.有多少平衡雕塑有18个订单?
--hints--
euler275()
应返回15030564。
assert.strictEqual(euler275(), 15030564);
--seed--
--seed-contents--
function euler275() {
return true;
}
euler275();
--solutions--
// solution required