--- id: 5900f39d1000cf542c50feb0 challengeType: 5 title: 'Problem 49: Prime permutations' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: primePermutations() deve retornar 296962999629. testString: 'assert.strictEqual(primePermutations(), 296962999629, "primePermutations() should return 296962999629.");' ```
## Challenge Seed
```js function primePermutations() { // Good luck! return true; } primePermutations(); ```
## Solution
```js // solution required ```