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