* 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>
795 B
795 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f3e21000cf542c50fef4 | 问题117:红色,绿色和蓝色瓷砖 | 5 | problem-117-red-green-and-blue-tiles |
--description--
使用黑色正方形瓷砖和椭圆形瓷砖的组合,选自:测量两个单位的红色瓷砖,测量三个单位的绿色瓷砖和测量四个单位的蓝色瓷砖,可以以十五种不同的方式平铺一个长度为五个单位的行。
一行测量五十个单位长度的平铺方式有多少?注意:这与问题116有关。
--hints--
euler117()
应该返回100808458960497。
assert.strictEqual(euler117(), 100808458960497);
--seed--
--seed-contents--
function euler117() {
return true;
}
euler117();
--solutions--
// solution required