1.0 KiB
1.0 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3e41000cf542c50fef7 | 5 | Problem 120: Square remainders | 301747 | Задача 120: Квадратные остатки |
Description
Instructions
Tests
tests:
- text: <code>euler120()</code> should return 333082500.
testString: assert.strictEqual(euler120(), 333082500);
Challenge Seed
function euler120() {
// Good luck!
return true;
}
euler120();
Solution
// solution required