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

640 B

id challengeType title videoUrl localeTitle
5900f4ed1000cf542c50fffe 5 Problem 384: Rudin-Shapiro sequence

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler384(), 3354706415856333000, "<code>euler384()</code> should return 3354706415856333000.");'

Challenge Seed

function euler384() {
  // Good luck!
  return true;
}

euler384();

Solution

// solution required