--- id: 5900f4181000cf542c50ff2b challengeType: 5 title: 'Problem 172: Investigating numbers with few repeated digits' videoUrl: '' localeTitle: 'Problema 172: Investigando números com poucos dígitos repetidos' --- ## Description
Quantos números de 18 dígitos n (sem zeros à esquerda) existem de tal forma que nenhum dígito ocorre mais de três vezes em n?
## Instructions
## Tests
```yml tests: - text: euler172() deve retornar 227485267000992000. testString: 'assert.strictEqual(euler172(), 227485267000992000, "euler172() should return 227485267000992000.");' ```
## Challenge Seed
```js function euler172() { // Good luck! return true; } euler172(); ```
## Solution
```js // solution required ```