Oliver Eyton-Williams ee1e8abd87
feat(curriculum): restore seed + solution to Chinese (#40683)
* 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>
2021-01-12 19:31:00 -07:00

995 B
Raw Blame History

id, title, challengeType, videoUrl, dashedName
id title challengeType videoUrl dashedName
5900f4801000cf542c50ff92 问题275平衡雕塑 5 problem-275-balanced-sculptures

--description--

让我们如下定义n阶平衡雕塑由n + 1个瓷砖组成的多边形称为块n个瓷砖和底座剩余瓷砖;底座的中心位置x = 0y = 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