freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-384-rudin-shapiro-s...

55 lines
640 B
Markdown
Raw Normal View History

---
id: 5900f4ed1000cf542c50fffe
challengeType: 5
title: 'Problem 384: Rudin-Shapiro sequence'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler384(), 3354706415856333000, "<code>euler384()</code> should return 3354706415856333000.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler384() {
// Good luck!
return true;
}
euler384();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>