--- id: 5900f49b1000cf542c50ffae challengeType: 5 title: 'Problem 303: Multiples with small digits' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler303(), 1111981904675169, "euler303() should return 1111981904675169.");' ```
## Challenge Seed
```js function euler303() { // Good luck! return true; } euler303(); ```
## Solution
```js // solution required ```