mrugesh 22afc2a0ca feat(learn): python certification projects (#38216)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
2020-05-27 13:19:08 +05:30

792 B

id, challengeType, isHidden, title, forumTopicId
id challengeType isHidden title forumTopicId
5900f43a1000cf542c50ff4d 5 false Problem 206: Concealed Square 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.

Instructions

Tests

tests:
  - text: <code>euler206()</code> should return 1389019170.
    testString: assert.strictEqual(euler206(), 1389019170);

Challenge Seed

function euler206() {
  // Good luck!
  return true;
}

euler206();

Solution

// solution required