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>
850 B
850 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4841000cf542c50ff96 | 5 | false | Problem 279: Triangles with integral sides and an integral angle | 301929 |
Description
Instructions
Tests
tests:
- text: <code>euler279()</code> should return 416577688.
testString: assert.strictEqual(euler279(), 416577688);
Challenge Seed
function euler279() {
// Good luck!
return true;
}
euler279();
Solution
// solution required