1.0 KiB
1.0 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3e91000cf542c50fefc | 5 | 问题125:回文总和 |
Description
Instructions
Tests
tests:
- text: <code>euler125()</code>应该返回2906969179。
testString: assert.strictEqual(euler125(), 2906969179);
Challenge Seed
function euler125() {
// Good luck!
return true;
}
euler125();
Solution
// solution required
/section>