1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3a51000cf542c50feb8 | 5 | Problem 57: Square root convergents | 问题57:平方根收敛 | 
Description
Instructions
Tests
tests:
  - text: <code>euler57()</code>应返回153。
    testString: 'assert.strictEqual(euler57(), 153, "<code>euler57()</code> should return 153.");'
Challenge Seed
function euler57() {
  // Good luck!
  return true;
}
euler57();
Solution
// solution required