freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-173-using-up-to-one...

681 B

id challengeType title videoUrl localeTitle
5900f41a1000cf542c50ff2c 5 Problem 173: Using up to one million tiles how many different "hollow" square laminae can be formed?

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler173();

Solution

// solution required