1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f39d1000cf542c50feb0 | 5 | Problem 49: Prime permutations | 问题49:主要排列 | 
Description
Instructions
Tests
tests:
  - text: <code>primePermutations()</code>应该返回296962999629。
    testString: 'assert.strictEqual(primePermutations(), 296962999629, "<code>primePermutations()</code> should return 296962999629.");'
Challenge Seed
function primePermutations() {
  // Good luck!
  return true;
}
primePermutations();
Solution
// solution required