--- id: 5900f4621000cf542c50ff75 challengeType: 5 title: 'Problem 246: Tangents to an ellipse' forumTopicId: 301893 --- ## Description
A definition for an ellipse is: Given a circle c with centre M and radius r and a point G such that d(G,M) ## Instructions
## Tests
```yml tests: - text: euler246() should return 810834388. testString: assert.strictEqual(euler246(), 810834388); ```
## Challenge Seed
```js function euler246() { return true; } euler246(); ```
## Solution
```js // solution required ```