Files
gikf 397a9f0c3e fix(curriculum): clean-up Project Euler 462-480 (#43069)
* fix: clean-up Project Euler 462-480

* fix: missing image extension

* fix: corrections from review

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2021-07-30 08:32:21 -07:00

2.2 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f54c1000cf542c51005f Problem 480: The Last Question 5 302158 problem-480-the-last-question

--description--

Consider all the words which can be formed by selecting letters, in any order, from the phrase:

\mathbf{\text{thereisasyetinsufficientdataforameaningfulanswer}}

Suppose those with 15 letters or less are listed in alphabetical order and numbered sequentially starting at 1.

The list would include:

$$\begin{align} & 1: \text{a} \\ & 2: \text{aa} \\ & 3: \text{aaa} \\ & 4: \text{aaaa} \\ & 5: \text{aaaaa} \\ & 6: \text{aaaaaa} \\ & 7: \text{aaaaaac} \\ & 8: \text{aaaaaacd} \\ & 9: \text{aaaaaacde} \\ & 10: \text{aaaaaacdee} \\ & 11: \text{aaaaaacdeee} \\ & 12: \text{aaaaaacdeeee} \\ & 13: \text{aaaaaacdeeeee} \\ & 14: \text{aaaaaacdeeeeee} \\ & 15: \text{aaaaaacdeeeeeef} \\ & 16: \text{aaaaaacdeeeeeeg} \\ & 17: \text{aaaaaacdeeeeeeh} \\ & \ldots \\ & 28: \text{aaaaaacdeeeeeey} \\ & 29: \text{aaaaaacdeeeeef} \\ & 30: \text{aaaaaacdeeeeefe} \\ & \ldots \\ & 115246685191495242: \text{euleoywuttttsss} \\ & 115246685191495243: \text{euler} \\ & 115246685191495244: \text{eulera} \\ & ... \\ & 525069350231428029: \text{ywuuttttssssrrr} \\ \end{align}$$

Define P(w) as the position of the word w.

Define W(p) as the word in position p.

We can see that P(w) and W(p) are inverses: P(W(p)) = p and W(P(w)) = w.

Examples:

$$\begin{align} & W(10) = \text{ aaaaaacdee} \\ & P(\text{aaaaaacdee}) = 10 \\ & W(115246685191495243) = \text{ euler} \\ & P(\text{euler}) = 115246685191495243 \\ \end{align}$$

Find

W(P(\text{legionary}) + P(\text{calorimeters}) - P(\text{annihilate}) + P(\text{orchestrated}) - P(\text{fluttering})).

Give your answer using lowercase characters (no punctuation or space).

--hints--

euler480() should return a string.

assert(typeof euler480() === 'string');

euler480() should return the string turnthestarson.

assert.strictEqual(euler480(), 'turnthestarson');

--seed--

--seed-contents--

function euler480() {

  return true;
}

euler480();

--solutions--

// solution required