--- id: 5900f4c71000cf542c50ffd8 challengeType: 5 title: 'Problem 346: Strong Repunits' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler346(), 336108797689259260, "euler346() should return 336108797689259260.");' ```
## Challenge Seed
```js function euler346() { // Good luck! return true; } euler346(); ```
## Solution
```js // solution required ```