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.1 KiB
1.1 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f41c1000cf542c50ff2f | 5 | false | Problem 176: Right-angled triangles that share a cathetus | 301811 |
Description
Instructions
Tests
tests:
- text: <code>euler176()</code> should return 96818198400000.
testString: assert.strictEqual(euler176(), 96818198400000);
Challenge Seed
function euler176() {
// Good luck!
return true;
}
euler176();
Solution
// solution required