2.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.2 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, "<code>euler112()</code> should return 1587000.");'
Challenge Seed
function euler112() {
  // Good luck!
  return true;
}
euler112();
Solution
// solution required