* 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>
804 B
804 B
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壁的方法,写成W(9,3)= 8。
计算W(32,10)。
--hints--
euler215()
应该返回806844323190414。
assert.strictEqual(euler215(), 806844323190414);
--seed--
--seed-contents--
function euler215() {
return true;
}
euler215();
--solutions--
// solution required