--- id: 5900f4691000cf542c50ff7b challengeType: 5 title: 'Problem 252: Convex Holes' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler252(), 104924, "euler252() should return 104924.");' ```
## Challenge Seed
```js function euler252() { // Good luck! return true; } euler252(); ```
## Solution
```js // solution required ```