--- id: 5900f4b21000cf542c50ffc5 challengeType: 5 title: 'Problem 326: Modulo Summations' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler326(), 1966666166408794400, "euler326() should return 1966666166408794400.");' ```
## Challenge Seed
```js function euler326() { // Good luck! return true; } euler326(); ```
## Solution
```js // solution required ```