--- id: 5900f4c11000cf542c50ffd3 challengeType: 5 title: 'Problem 341: Golomb"s self-describing sequence' videoUrl: '' localeTitle: 'Задача 341: самоописательная последовательность Голомба' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: euler341() должен вернуть 56098610614277016. testString: 'assert.strictEqual(euler341(), 56098610614277016, "euler341() should return 56098610614277016.");' ```
## Challenge Seed
```js function euler341() { // Good luck! return true; } euler341(); ```
## Solution
```js // solution required ```