--- id: 5900f5101000cf542c510022 challengeType: 5 title: 'Problem 419: Look and say sequence' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler419(), 998567458, 1046245404, 43363922, "euler419() should return 998567458, 1046245404, 43363922.");' ```
## Challenge Seed
```js function euler419() { // Good luck! return true; } euler419(); ```
## Solution
```js // solution required ```