Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

908 B

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f4f21000cf542c510004 Problem 389: Platonic Dice 5 302053

--description--

An unbiased single 4-sided die is thrown and its value, T, is noted.T unbiased 6-sided dice are thrown and their scores are added together. The sum, C, is noted.C unbiased 8-sided dice are thrown and their scores are added together. The sum, O, is noted.O unbiased 12-sided dice are thrown and their scores are added together. The sum, D, is noted.D unbiased 20-sided dice are thrown and their scores are added together. The sum, I, is noted.

Find the variance of I, and give your answer rounded to 4 decimal places.

--hints--

euler389() should return 2406376.3623.

assert.strictEqual(euler389(), 2406376.3623);

--seed--

--seed-contents--

function euler389() {

  return true;
}

euler389();

--solutions--

// solution required