--- id: 5900f3f21000cf542c50ff04 challengeType: 5 title: 'Problem 133: Repunit nonfactors' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler133(), 453647705, "euler133() should return 453647705.");' ```
## Challenge Seed
```js function euler133() { // Good luck! return true; } euler133(); ```
## Solution
```js // solution required ```