* 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>
542 B
542 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f3fa1000cf542c50ff0d | 问题142:完美的方形集合 | 5 | problem-142-perfect-square-collection |
--description--
找到具有整数x> y> z> 0的最小x + y + z,使得x + y,x-y,x + z,x-z,y + z,y-z都是完美正方形。
--hints--
euler142()
应返回1006193。
assert.strictEqual(euler142(), 1006193);
--seed--
--seed-contents--
function euler142() {
return true;
}
euler142();
--solutions--
// solution required