1.9 KiB
1.9 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3a61000cf542c50feb9 | 5 | Problem 58: Spiral primes | 302169 | Проблема 58: Спиральные числа |
Description
Instructions
Tests
tests:
- text: <code>euler58()</code> should return 26241.
testString: assert.strictEqual(euler58(), 26241);
Challenge Seed
function euler58() {
// Good luck!
return true;
}
euler58();
Solution
// solution required