* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.6 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.6 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f3c51000cf542c50fed6 | 5 | Problem 88: Product-sum numbers | 
Description
Instructions
Tests
tests:
  - text: <code>euler88()</code> should return 7587457.
    testString: assert.strictEqual(euler88(), 7587457, '<code>euler88()</code> should return 7587457.');
Challenge Seed
function euler88() {
  // Good luck!
  return true;
}
euler88();
Solution
// solution required