--- id: 5900f45b1000cf542c50ff6d challengeType: 5 title: 'Problem 238: Infinite string tour' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler238(), 9922545104535660, "euler238() should return 9922545104535660.");' ```
## Challenge Seed
```js function euler238() { // Good luck! return true; } euler238(); ```
## Solution
```js // solution required ```