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