Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-49-prime-permutations.russian.md

103 lines
2.7 KiB
Markdown
Raw Normal View History

---
id: 5900f39d1000cf542c50feb0
challengeType: 5
title: 'Problem 49: Prime permutations'
forumTopicId: 302159
localeTitle: 'Problem 49: Prime permutations'
---
## Description
<section id='description'>
Арифметическая последовательность, 1487, 4817, 8147, в которой каждое из членов увеличивается на 3330, необычна двумя способами: (i) каждое из трех членов является простым, и (ii) каждое из 4-значных чисел перестановки друг друга. Нет арифметических последовательностей, состоящих из трех 1-, 2- или 3-значных простых чисел, обладающих этим свойством, но есть еще одна 4-значная возрастающая последовательность. Какое 12-значное число вы формируете, объединяя три термина в этой последовательности?
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>primePermutations()</code> should return 296962999629.
testString: assert.strictEqual(primePermutations(), 296962999629);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function primePermutations() {
// Good luck!
return true;
}
primePermutations();
```
</div>
</section>
## Solution
<section id='solution'>
```js
function primePermutations() {
function arePermutations(num1, num2) {
const numStr1 = num1.toString();
let numStr2 = num2.toString();
if (numStr1.length !== numStr2.length) {
return false;
}
for (let i = 0; i < numStr1.length; i++) {
const index = numStr2.indexOf(numStr1[i]);
if (index === -1) {
return false;
}
numStr2 = numStr2.slice(0, index) + numStr2.slice(index + 1);
}
return true;
}
function isPrime(num) {
if (num < 2) {
return false;
} else if (num === 2) {
return true;
}
const sqrtOfNum = Math.floor(num ** 0.5);
for (let i = 2; i <= sqrtOfNum + 1; i++) {
if (num % i === 0) {
return false;
}
}
return true;
}
for (let num1 = 1000; num1 <= 9999; num1++) {
const num2 = num1 + 3330;
const num3 = num2 + 3330;
if (isPrime(num1) && isPrime(num2) && isPrime(num3)) {
if (arePermutations(num1, num2) && arePermutations(num1, num3)
&& num1 !== 1487) {
// concatenate and return numbers
return (num1 * 100000000) + (num2 * 10000) + num3;
}
}
}
return 0;
}
```
</section>