search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
		
			
				
	
	
	
		
			1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3dd1000cf542c50feef | 5 | Problem 112: Bouncy numbers | 问题112:有弹性的数字 | 
Description
Instructions
Tests
tests:
  - text: <code>euler112()</code>应返回1587000。
    testString: assert.strictEqual(euler112(), 1587000);
Challenge Seed
function euler112() {
  // Good luck!
  return true;
}
euler112();
Solution
// solution required
/section>