1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f4911000cf542c50ffa3 | 5 | Problem 292: Pythagorean Polygons | 301944 | 
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);
Challenge Seed
function euler292() {
  // Good luck!
  return true;
}
euler292();
Solution
// solution required