search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3e91000cf542c50fefc | 5 | Problem 125: Palindromic sums | 问题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>