freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-114-counting-block-...

631 B

id challengeType title videoUrl localeTitle
5900f3e01000cf542c50fef2 5 Problem 114: Counting block combinations I

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler114();

Solution

// solution required