--- id: 5900f4411000cf542c50ff53 challengeType: 5 title: 'Problem 212: Combined Volume of Cuboids' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler212(), 328968937309, "euler212() should return 328968937309.");' ```
## Challenge Seed
```js function euler212() { // Good luck! return true; } euler212(); ```
## Solution
```js // solution required ```