freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-85-counting-rectang...

602 B

id challengeType title videoUrl localeTitle
5900f3c11000cf542c50fed4 5 Problem 85: Counting rectangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler85();

Solution

// solution required