--- id: 5900f3db1000cf542c50feee challengeType: 5 title: 'Problem 111: Primes with runs' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler111(), 612407567715, "euler111() should return 612407567715.");' ```
## Challenge Seed
```js function euler111() { // Good luck! return true; } euler111(); ```
## Solution
```js // solution required ```