freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-270-cutting-squares...

611 B

id challengeType title videoUrl localeTitle
5900f47c1000cf542c50ff8e 5 Problem 270: Cutting Squares

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler270();

Solution

// solution required