--- id: 5900f4931000cf542c50ffa6 challengeType: 5 title: 'Problem 295: Lenticular holes' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler295(), 4884650818, "euler295() should return 4884650818.");' ```
## Challenge Seed
```js function euler295() { // Good luck! return true; } euler295(); ```
## Solution
```js // solution required ```