--- id: 5900f41c1000cf542c50ff2f challengeType: 5 title: 'Problem 176: Right-angled triangles that share a cathetus' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests ```yml tests: - text: '' testString: 'assert.strictEqual(euler176(), 96818198400000, "euler176() should return 96818198400000.");' ``` ## Challenge Seed ```js function euler176() { // Good luck! return true; } euler176(); ``` ## Solution ```js // solution required ```
euler176()