--- id: 5900f3931000cf542c50fea6 challengeType: 5 title: 'Problem 39: Integer right triangles' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(intRightTriangles(500) == 420, "intRightTriangles(500) should return 420.");' - text: '' testString: 'assert(intRightTriangles(800) == 420, "intRightTriangles(800) should return 420.");' - text: '' testString: 'assert(intRightTriangles(900) == 840, "intRightTriangles(900) should return 840.");' - text: '' testString: 'assert(intRightTriangles(1000) == 840, "intRightTriangles(1000) should return 840.");' ```
## Challenge Seed
```js function intRightTriangles(n) { // Good luck! return n; } intRightTriangles(1000); ```
## Solution
```js // solution required ```