--- id: 5900f38f1000cf542c50fea2 challengeType: 5 title: 'Problem 35: Circular primes' videoUrl: '' localeTitle: '' --- ## Description
Число 197, называется круговым простым, поскольку все повороты цифр: 197, 971 и 719 сами по себе являются первыми. Есть тринадцать таких простых чисел ниже 100: 2, 3, 5, 7, 11, 13, 17, 31, 37, 71, 73, 79 и 97. Сколько круговых простых чисел ниже n, тогда как 100 <= n < = 1000000?
## Instructions undefined ## Tests
```yml tests: - text: circularPrimes(100) должен возвращать 13. testString: 'assert(circularPrimes(100) == 13, "circularPrimes(100) should return 13.");' - text: circularPrimes(100000) должен возвращать 43. testString: 'assert(circularPrimes(100000) == 43, "circularPrimes(100000) should return 43.");' - text: '' testString: 'assert(circularPrimes(250000) == 45, "circularPrimes(250000) should return 45.");' - text: circularPrimes(500000) должен вернуть 49. testString: 'assert(circularPrimes(500000) == 49, "circularPrimes(500000) should return 49.");' - text: circularPrimes(750000) должен вернуть 49. 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 ```