Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-82-path-sum-three-ways.russian.md

58 lines
1.9 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: 5900f3be1000cf542c50fed1
challengeType: 5
title: 'Problem 82: Path sum: three ways'
forumTopicId: 302196
localeTitle: 'Задача 82: сумма пути: три способа'
---
## Description
<section id='description'>
ПРИМЕЧАНИЕ. Эта проблема представляет собой более сложную версию задачи 81. Минимальная сумма пути в матрице 5 на 5 ниже, начиная с любой ячейки в левом столбце и заканчивая в любой ячейке в правом столбце и только перемещаясь вверх, вниз , а справа - красным и полужирным; сумма равна 994. <p> $$ \ begin {pmatrix} 131 &amp; 673 &amp; \ color {red} {234} &amp; \ color {red} {103} &amp; \ color {red} {18} \ \ color {red} {201} &amp; \ color { красный} {96} &amp; \ color {red} {342} &amp; 965 &amp; 150 \ 630 &amp; 803 &amp; 746 &amp; 422 &amp; 111 \ 537 &amp; 699 &amp; 497 &amp; 121 &amp; 956 \ 805 &amp; 732 &amp; 524 &amp; 37 &amp; 331 \ end {pmatrix} $$ </p><p> Найдите минимальную сумму пути в файле matrix.txt (щелкните правой кнопкой мыши и «Сохранить ссылку / цель как ...»), текстовый файл 31K, содержащий матрицу 80 на 80, от левого столбца до правого столбца. </p>
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler82()</code> should return 260324.
testString: assert.strictEqual(euler82(), 260324);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler82() {
// Good luck!
return true;
}
euler82();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>