1.6 KiB
1.6 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3e91000cf542c50fefc | 5 | Problem 125: Palindromic sums | 301752 | Задача 125: Палиндромические суммы |
Description
Instructions
Tests
tests:
- text: <code>euler125()</code> should return 2906969179.
testString: assert.strictEqual(euler125(), 2906969179);
Challenge Seed
function euler125() {
// Good luck!
return true;
}
euler125();
Solution
// solution required