--- id: 5900f49b1000cf542c50ffae challengeType: 5 title: 'Problem 303: Multiples with small digits' videoUrl: '' localeTitle: 'Problema 303: Múltiplos com dígitos pequenos' --- ## Description
Para um inteiro positivo n, defina f (n) como o múltiplo menos positivo de n que, escrito na base 10, usa apenas dígitos ≤ 2. Assim f (2) = 2, f (3) = 12, f (7) = 21, f (42) = 210, f (89) = 1121222. Além disso, .

Encontrar .

## Instructions
## Tests
```yml tests: - text: euler303() deve retornar 1111981904675169. testString: 'assert.strictEqual(euler303(), 1111981904675169, "euler303() should return 1111981904675169.");' ```
## Challenge Seed
```js function euler303() { // Good luck! return true; } euler303(); ```
## Solution
```js // solution required ```