1.5 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.5 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