--- id: 5900f4621000cf542c50ff75 challengeType: 5 title: 'Problem 246: Tangents to an ellipse' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler246(), 810834388, "euler246() should return 810834388.");' ```
## Challenge Seed
```js function euler246() { // Good luck! return true; } euler246(); ```
## Solution
```js // solution required ```