787 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			787 B
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f3951000cf542c50fea8 | 5 | Problem 41: Pandigital prime | Проблема 41: Pandigital prime | 
Description
undefined
Instructions
undefined
Tests
tests:
  - text: ''
    testString: 'assert(pandigitalPrime(4) == 4231, "<code>pandigitalPrime(4)</code> should return 4231.");'
  - text: ''
    testString: 'assert(pandigitalPrime(7) == 7652413, "<code>pandigitalPrime(7)</code> should return 7652413.");'
Challenge Seed
function pandigitalPrime(n) {
  // Good luck!
  return n;
}
pandigitalPrime(7);
Solution
// solution required