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 |
---|---|---|---|---|
5900f4881000cf542c50ff9a | 5 | false | Problem 283: Integer sided triangles for which the area * perimeter ratio is integral | 301934 |
Description
Find the sum of the perimeters of all integer sided triangles for which the area/perimeter ratios are equal to positive integers not exceeding 1000.
Instructions
Tests
tests:
- text: <code>euler283()</code> should return 28038042525570324.
testString: assert.strictEqual(euler283(), 28038042525570324);
Challenge Seed
function euler283() {
// Good luck!
return true;
}
euler283();
Solution
// solution required