Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-200-find-the-200th-prime-proof-sqube-containing-the-contiguous-sub-string-200.russian.md

56 lines
1.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f4351000cf542c50ff47
challengeType: 5
title: 'Problem 200: Find the 200th prime-proof sqube containing the contiguous sub-string "200"'
videoUrl: ''
localeTitle: 'Задача 200: найти 200-й прецезионный сбб, содержащий непрерывную подстроку «200»,'
---
## Description
<section id="description"> Будем определять сбб как число вида p2q3, где p и q - различные простые числа. Например, 200 = 5223 или 120072949 = 232613. <p> Первые пять сплюсов - 72, 108, 200, 392 и 500. </p><p> Интересно, что 200 также является первым номером, для которого вы не можете изменить ни одну цифру, чтобы сделать премьер; мы будем называть такие числа первичными. Следующим простым доказательством, которое содержит смежную подстроку «200», является 1992008. </p><p> Найдите 200-й премьер-зуммер, содержащий непрерывную подстроку «200». </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler200()</code> должен вернуть 229161792008.
testString: 'assert.strictEqual(euler200(), 229161792008, "<code>euler200()</code> should return 229161792008.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler200() {
// Good luck!
return true;
}
euler200();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>