--- id: 5900f41a1000cf542c50ff2d challengeType: 5 title: 'Problem 174: Counting the number of "hollow" square laminae that can form one, two, three, ... distinct arrangements' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler174(), 209566, "euler174() should return 209566.");' ```
## Challenge Seed
```js function euler174() { // Good luck! return true; } euler174(); ```
## Solution
```js // solution required ```