Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
1.2 KiB
1.2 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4911000cf542c50ffa3 | 5 | false | 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