2.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3c51000cf542c50fed6 | 5 | Problem 88: Product-sum numbers | Задача 88: номера продуктов | 
Description
Instructions
Tests
tests:
  - text: <code>euler88()</code> должен вернуть 7587457.
    testString: 'assert.strictEqual(euler88(), 7587457, "<code>euler88()</code> should return 7587457.");'
Challenge Seed
function euler88() {
  // Good luck!
  return true;
}
euler88();
Solution
// solution required