freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-290-digital-signatu...

666 B

id title challengeType forumTopicId dashedName
5900f48f1000cf542c50ffa1 問題 290: 数字の性質 1 301942 problem-290-digital-signature

--description--

0 ≤ n < {10}^{18} のとき、n の各位の和が 137n の各位の和と等しくなるという性質を持つ整数 n はいくつありますか。

--hints--

digitalSignature()20444710234716470 を返す必要があります。

assert.strictEqual(digitalSignature(), 20444710234716470);

--seed--

--seed-contents--

function digitalSignature() {

  return true;
}

digitalSignature();

--solutions--

// solution required