* 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>
589 B
589 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f42f1000cf542c50ff41 | 问题193:无广场数字 | 5 | problem-193-squarefree-numbers |
--description--
如果没有素数的平方除n,则正整数n称为squarefree,因此1,2,3,5,6,7,10,11是无平方的,但不是4,8,9,12。
250以下有多少平方数?
--hints--
euler193()
应该返回684465067343069。
assert.strictEqual(euler193(), 684465067343069);
--seed--
--seed-contents--
function euler193() {
return true;
}
euler193();
--solutions--
// solution required