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