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

784 B

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f3e21000cf542c50fef4 Problem 117: Red, green, and blue tiles 5 301743

--description--

Using a combination of black square tiles and oblong tiles chosen from: red tiles measuring two units, green tiles measuring three units, and blue tiles measuring four units, it is possible to tile a row measuring five units in length in exactly fifteen different ways.

How many ways can a row measuring fifty units in length be tiled? NOTE: This is related to Problem 116.

--hints--

euler117() should return 100808458960497.

assert.strictEqual(euler117(), 100808458960497);

--seed--

--seed-contents--

function euler117() {

  return true;
}

euler117();

--solutions--

// solution required