--- id: 5900f48f1000cf542c50ffa1 challengeType: 5 videoUrl: '' title: 问题290:数字签名 --- ## Description 多少个0≤n <1018的整数具有n的位数之和等于137n的位数之和的性质? ## Instructions ## Tests ```yml tests: - text: euler290()应该返回20444710234716470。 testString: assert.strictEqual(euler290(), 20444710234716470); ``` ## Challenge Seed ```js function euler290() { // Good luck! return true; } euler290(); ``` ## Solution ```js // solution required ``` /section>
euler290()