2.1 KiB
2.1 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3cf1000cf542c50fee1 | 5 | Problem 98: Anagramic squares | 302215 | Проблема 98: Анаграммы квадратов |
Description
Instructions
Tests
tests:
- text: <code>euler98()</code> should return 18769.
testString: assert.strictEqual(euler98(), 18769);
Challenge Seed
function euler98() {
// Good luck!
return true;
}
euler98();
Solution
// solution required