--- id: 5900f4241000cf542c50ff37 challengeType: 5 title: 'Problem 184: Triangles containing the origin' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler184(), 1725323624056, "euler184() should return 1725323624056.");' ```
## Challenge Seed
```js function euler184() { // Good luck! return true; } euler184(); ```
## Solution
```js // solution required ```