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