freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-49-prime-permutatio...

715 B

id challengeType title videoUrl localeTitle
5900f39d1000cf542c50feb0 5 Problem 49: Prime permutations

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>primePermutations()</code> deve retornar 296962999629.
    testString: 'assert.strictEqual(primePermutations(), 296962999629, "<code>primePermutations()</code> should return 296962999629.");'

Challenge Seed

function primePermutations() {
  // Good luck!
  return true;
}

primePermutations();

Solution

// solution required