2020-10-06 23:10:08 +05:30

752 B
Raw Blame History

id, challengeType, videoUrl, localeTitle
id challengeType videoUrl localeTitle
5900f48f1000cf542c50ffa1 5 问题290数字签名

Description

多少个0≤n <1018的整数具有n的位数之和等于137n的位数之和的性质

Instructions

Tests

tests:
  - text: <code>euler290()</code>应该返回20444710234716470。
    testString: assert.strictEqual(euler290(), 20444710234716470);

Challenge Seed

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

euler290();

Solution

// solution required

/section>