--- id: 5900f4ee1000cf542c510000 challengeType: 5 title: 'Problem 385: Ellipses inside triangles' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler385(), 3776957309612154000, "euler385() should return 3776957309612154000.");' ```
## Challenge Seed
```js function euler385() { // Good luck! return true; } euler385(); ```
## Solution
```js // solution required ```