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