--- id: 5900f5071000cf542c510018 challengeType: 5 title: 'Problem 410: Circle and tangent line' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler410(), 799999783589946600, "euler410() should return 799999783589946600.");' ```
## Challenge Seed
```js function euler410() { // Good luck! return true; } euler410(); ```
## Solution
```js // solution required ```