--- id: 5900f4f41000cf542c510007 challengeType: 5 title: 'Problem 392: Enmeshed unit circle' videoUrl: '' localeTitle: 'Задача 392: Окруженный единичный круг' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: euler392() должен вернуть 3.1486734435. testString: 'assert.strictEqual(euler392(), 3.1486734435, "euler392() should return 3.1486734435.");' ```
## Challenge Seed
```js function euler392() { // Good luck! return true; } euler392(); ```
## Solution
```js // solution required ```