* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4911000cf542c50ffa3 | 5 | Problem 292: Pythagorean Polygons | 
Description
You are given that P(4) = 1, P(30) = 3655 and P(60) = 891045. Find P(120).
Instructions
Tests
tests:
  - text: <code>euler292()</code> should return 3600060866.
    testString: assert.strictEqual(euler292(), 3600060866, '<code>euler292()</code> should return 3600060866.');
Challenge Seed
function euler292() {
  // Good luck!
  return true;
}
euler292();
Solution
// solution required