1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f39d1000cf542c50feb0 | 5 | Problem 49: Prime permutations | Problema 49: Permutaciones de cebado | 
Description
Instructions
Tests
tests:
  - text: <code>primePermutations()</code> debe devolver 296962999629.
    testString: 'assert.strictEqual(primePermutations(), 296962999629, "<code>primePermutations()</code> should return 296962999629.");'
Challenge Seed
function primePermutations() {
  // Good luck!
  return true;
}
primePermutations();
Solution
// solution required