--- id: 5900f4111000cf542c50ff24 challengeType: 5 title: 'Problem 165: Intersections' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler165(), 2868868, "euler165() should return 2868868.");' ```
## Challenge Seed
```js function euler165() { // Good luck! return true; } euler165(); ```
## Solution
```js // solution required ```