--- id: 5900f4b91000cf542c50ffcc challengeType: 5 title: 'Problem 333: Special partitions' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler333(), 3053105, "euler333() should return 3053105.");' ```
## Challenge Seed
```js function euler333() { // Good luck! return true; } euler333(); ```
## Solution
```js // solution required ```