--- id: 5900f4b11000cf542c50ffc3 challengeType: 5 title: 'Problem 324: Building a tower' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler324(), 96972774, "euler324() should return 96972774.");' ```
## Challenge Seed
```js function euler324() { // Good luck! return true; } euler324(); ```
## Solution
```js // solution required ```