--- id: 5900f47c1000cf542c50ff8e challengeType: 5 title: 'Problem 270: Cutting Squares' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler270(), 82282080, "euler270() should return 82282080.");' ```
## Challenge Seed
```js function euler270() { // Good luck! return true; } euler270(); ```
## Solution
```js // solution required ```