1.0 KiB
1.0 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3aa1000cf542c50febd | 5 | Problem 62: Cubic permutations | 302174 | Задача 62: Кубические перестановки |
Description
Instructions
Tests
tests:
- text: <code>euler62()</code> should return 127035954683.
testString: assert.strictEqual(euler62(), 127035954683);
Challenge Seed
function euler62() {
// Good luck!
return true;
}
euler62();
Solution
// solution required