1.7 KiB
1.7 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3a51000cf542c50feb8 | 5 | Problem 57: Square root convergents | 302168 | Проблема 57: Квадратные корневые конвергенты |
Description
Instructions
Tests
tests:
- text: <code>euler57()</code> should return 153.
testString: assert.strictEqual(euler57(), 153);
Challenge Seed
function euler57() {
// Good luck!
return true;
}
euler57();
Solution
// solution required