--- id: 5900f4ed1000cf542c50fffe challengeType: 5 title: 'Problem 384: Rudin-Shapiro sequence' videoUrl: '' localeTitle: 'Задача 384: последовательность Рудина-Шапиро' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler384(), 3354706415856333000, "euler384() should return 3354706415856333000.");' ```
## Challenge Seed
```js function euler384() { // Good luck! return true; } euler384(); ```
## Solution
```js // solution required ```