Files
freeCodeCamp/curriculum/challenges/portuguese/10-coding-interview-prep/project-euler/problem-172-investigating-numbers-with-few-repeated-digits.md

727 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4181000cf542c50ff2b Problema 172: Investigação dos números com poucos algarismos repetidos 5 301807 problem-172-investigating-numbers-with-few-repeated-digits

--description--

Quantos números de 18 algarismos n (sem zeros à esquerda) existem de modo que nenhum algarismo se repita mais de três vezes em n?

--hints--

numbersWithRepeatedDigits() deve retornar 227485267000992000.

assert.strictEqual(numbersWithRepeatedDigits(), 227485267000992000);

--seed--

--seed-contents--

function numbersWithRepeatedDigits() {

  return true;
}

numbersWithRepeatedDigits();

--solutions--

// solution required