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

508 B

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f43a1000cf542c50ff4d Problem 206: Concealed Square 5 301847

--description--

Find the unique positive integer whose square has the form 1_2_3_4_5_6_7_8_9_0, where each “_” is a single digit.

--hints--

euler206() should return 1389019170.

assert.strictEqual(euler206(), 1389019170);

--seed--

--seed-contents--

function euler206() {

  return true;
}

euler206();

--solutions--

// solution required