--- id: 5900f47d1000cf542c50ff8f challengeType: 5 title: 'Problem 272: Modular Cubes, part 2' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler272(), 8495585919506151000, "euler272() should return 8495585919506151000.");' ```
## Challenge Seed
```js function euler272() { // Good luck! return true; } euler272(); ```
## Solution
```js // solution required ```