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

616 B

id challengeType title videoUrl localeTitle
5900f3df1000cf542c50fef1 5 Problem 115: Counting block combinations II

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler115();

Solution

// solution required