Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-215-crack-free-walls.md
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

804 B
Raw Blame History

id, title, challengeType, videoUrl, dashedName
id title challengeType videoUrl dashedName
5900f4431000cf542c50ff56 问题215无裂缝墙 5 problem-215-crack-free-walls

--description--

考虑用2×1和3×1砖水平×垂直尺寸建造墙壁的问题使得为了额外的强度水平相邻砖块之间的间隙从不在连续层中排列即从不形成“运行”裂纹”。

例如由于以红色显示的运行裂缝以下9×3墙是不可接受的

有八种形成无裂纹9×3壁的方法写成W9,3= 8。

计算W32,10

--hints--

euler215()应该返回806844323190414。

assert.strictEqual(euler215(), 806844323190414);

--seed--

--seed-contents--

function euler215() {

  return true;
}

euler215();

--solutions--

// solution required