--- id: 5900f4351000cf542c50ff47 challengeType: 5 title: 'Problem 200: Find the 200th prime-proof sqube containing the contiguous sub-string "200"' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler200(), 229161792008, "euler200() should return 229161792008.");' ```
## Challenge Seed
```js function euler200() { // Good luck! return true; } euler200(); ```
## Solution
```js // solution required ```