--- id: 5900f38f1000cf542c50fea2 challengeType: 5 title: 'Problem 35: Circular primes' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(circularPrimes(100) == 13, "circularPrimes(100) should return 13.");' - text: '' testString: 'assert(circularPrimes(100000) == 43, "circularPrimes(100000) should return 43.");' - text: '' testString: 'assert(circularPrimes(250000) == 45, "circularPrimes(250000) should return 45.");' - text: '' testString: 'assert(circularPrimes(500000) == 49, "circularPrimes(500000) should return 49.");' - text: '' testString: 'assert(circularPrimes(750000) == 49, "circularPrimes(750000) should return 49.");' - text: '' testString: 'assert(circularPrimes(1000000) == 55, "circularPrimes(1000000) should return 55.");' ```
## Challenge Seed
```js function circularPrimes(n) { // Good luck! return n; } circularPrimes(1000000); ```
## Solution
```js // solution required ```