freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-77-prime-summations...

56 lines
1.1 KiB
Markdown

---
id: 5900f3b91000cf542c50fecc
challengeType: 5
title: 'Problem 77: Prime summations'
videoUrl: ''
localeTitle: 'Задача 77: Основные суммы'
---
## Description
<section id="description"> Можно записать десять как сумму простых чисел ровно пятью разными способами: 7 + 3 5 + 5 5 + 3 + 2 3 + 3 + 2 + 2 2 + 2 + 2 + 2 + 2 Каково первое значение, которое может быть записана как сумма простых чисел более чем пятью тысячами разных способов? </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler77()</code> должен возвращать 71.
testString: 'assert.strictEqual(euler77(), 71, "<code>euler77()</code> should return 71.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler77() {
// Good luck!
return true;
}
euler77();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>