freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-215-crack-free-wall...

626 B

id challengeType title videoUrl localeTitle
5900f4431000cf542c50ff56 5 Problem 215: Crack-free Walls

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler215();

Solution

// solution required