freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-83-path-sum-four-wa...

56 lines
2.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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