* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			965 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			965 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f42b1000cf542c50ff3d | 5 | Problem 190: Maximising a weighted product | 
Description
For example, it can be verified that [P10] = 4112 ([ ] is the integer part function).
Find Σ[Pm] for 2 ≤ m ≤ 15.
Instructions
Tests
tests:
  - text: <code>euler190()</code> should return 371048281.
    testString: assert.strictEqual(euler190(), 371048281, '<code>euler190()</code> should return 371048281.');
Challenge Seed
function euler190() {
  // Good luck!
  return true;
}
euler190();
Solution
// solution required