Files
freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-206-concealed-square.md
2022-01-20 20:30:18 +01:00

632 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f43a1000cf542c50ff4d 問題 206: 隠された平方数 5 301847 problem-206-concealed-square

--description--

「_」は 1 つの数を表すものとします。2 乗すると 1_2_3_4_5_6_7_8_9_0 の形になる唯一の正の整数を求めなさい。

--hints--

concealedSquare()1389019170 を返す必要があります。

assert.strictEqual(concealedSquare(), 1389019170);

--seed--

--seed-contents--

function concealedSquare() {

  return true;
}

concealedSquare();

--solutions--

// solution required