* 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>
39 lines
1.5 KiB
Markdown
39 lines
1.5 KiB
Markdown
---
|
||
id: 5900f54c1000cf542c51005f
|
||
title: 问题480:最后一个问题
|
||
challengeType: 5
|
||
videoUrl: ''
|
||
dashedName: problem-480-the-last-question
|
||
---
|
||
|
||
# --description--
|
||
|
||
考虑所有可以通过从短语中选择任何顺序的字母形成的单词:thereisasyetinsufficientdataforameaningfulanswer假设15个字母或更少的字母按字母顺序列出并从1开始按顺序编号。列表包括:1:a 2: aa 3:aaa 4:aaaa 5:aaaaa 6:aaaaaa 7:aaaaaac 8:aaaaaacd 9:aaaaaacde 10:aaaaaacdee 11:aaaaaacdeee 12:aaaaaacdeeee 13:aaaaaacdeeeee 14:aaaaaacdeeeeee 15:aaaaaacdeeeeeef 16:aaaaaacdeeeeeeee 17:aaaaaacdeeeeeee 17:aaaaaacdeeeeeeh ... 28 :aaaaaacdeeeeeey 29:aaaaaacdeeeeef 30:aaaaaacdeeeeefe ... 115246685191495242:euleoywuttttsss 115246685191495243:euler 115246685191495244:eulera ... 525069350231428029:ywuuttttssssrrrDefine P(w)作为单词w的位置。将W(p)定义为位置p中的单词。我们可以看到P(w)和W(p)是逆的:P(W(p))= p和W(P(w))= w。示例:W(10)= aaaaaacdee P(aaaaaacdee)= 10 W(115246685191495243)= euler P(euler)= 115246685191495243找到W(P(军团)+ P(量热计) - P(歼灭)+ P(精心策划) - P(飘飘))。使用小写字符(没有标点符号或空格)给出答案。
|
||
|
||
# --hints--
|
||
|
||
`euler480()`应该返回turnthestarson。
|
||
|
||
```js
|
||
assert.strictEqual(euler480(), turnthestarson);
|
||
```
|
||
|
||
# --seed--
|
||
|
||
## --seed-contents--
|
||
|
||
```js
|
||
function euler480() {
|
||
|
||
return true;
|
||
}
|
||
|
||
euler480();
|
||
```
|
||
|
||
# --solutions--
|
||
|
||
```js
|
||
// solution required
|
||
```
|