1.2 KiB
1.2 KiB
id, challengeType, title
id | challengeType | title |
---|---|---|
5900f4881000cf542c50ff9a | 5 | Problem 283: Integer sided triangles for which the area * perimeter ratio is integral |
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, "<code>euler283()</code> should return 28038042525570324.");'
Challenge Seed
function euler283() {
// Good luck!
return true;
}
euler283();
Solution
// solution required