* 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>
942 B
942 B
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
5900f4d91000cf542c50ffea | 问题364:舒适的距离 | 5 | problem-364-comfortable-distance |
--description--
连续N个座位。根据以下规则,N人互相填充座位:如果有任何座位,相邻的座位没有被占用,请使用这样的座位。如果没有这样的座位并且有任何座位仅占用一个相邻的座位,则使用这样的座位。否则请选择剩余的可用座位之一。
设T(N)是具有给定规则的N个人占用N个座位的可能性的数量。下图显示T(4)= 8。
我们可以验证T(10)= 61632和T(1 000)mod 100 000 007 = 47255094.求T(1 000 000)mod 100 000 007。
--hints--
euler364()
应返回44855254。
assert.strictEqual(euler364(), 44855254);
--seed--
--seed-contents--
function euler364() {
return true;
}
euler364();
--solutions--
// solution required