2.5 KiB
2.5 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f54a1000cf542c51005c | 5 | Problem 477: Number Sequence Game | 302154 | Проблема 477: Игра с порядковым номером |
Description
Instructions
Tests
tests:
- text: <code>euler477()</code> should return 25044905874565164.
testString: assert.strictEqual(euler477(), 25044905874565164);
Challenge Seed
function euler477() {
// Good luck!
return true;
}
euler477();
Solution
// solution required