--- id: 5900f5481000cf542c51005b challengeType: 5 title: 'Problem 476: Circle Packing II' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler476(), 110242.87794, "euler476() should return 110242.87794.");' ```
## Challenge Seed
```js function euler476() { // Good luck! return true; } euler476(); ```
## Solution
```js // solution required ```