freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-405-a-rectangular-t...

618 B

id challengeType title videoUrl localeTitle
5900f5021000cf542c510014 5 Problem 405: A rectangular tiling

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler405();

Solution

// solution required