--- id: 5900f4861000cf542c50ff98 challengeType: 5 title: 'Problem 281: Pizza Toppings' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler281(), 1485776387445623, "euler281() should return 1485776387445623.");' ```
## Challenge Seed
```js function euler281() { // Good luck! return true; } euler281(); ```
## Solution
```js // solution required ```