freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-81-path-sum-two-way...

58 lines
1.8 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: 5900f3bd1000cf542c50fed0
challengeType: 5
title: 'Problem 81: Path sum: two ways'
forumTopicId: 302195
localeTitle: 'Задача 81: сумма пути: два пути'
---
## Description
<section id='description'>
В приведенной ниже матрице 5 на 5 минимальная сумма пути от верхнего левого к нижнему праву, только перемещаясь вправо и вниз, обозначена жирным красным цветом и равна 2427. <p> $$ \ begin {pmatrix} \ color {red} {131} &amp; 673 &amp; 234 &amp; 103 &amp; 18 \ \ color {red} {201} &amp; \ color {red} {96} &amp; \ color {red} {342} &amp; 965 &amp; 150 \ 630 &amp; 803 &amp; \ color {red} {746} &amp; \ color {red} {422} &amp; 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>euler81()</code> should return 427337.
testString: assert.strictEqual(euler81(), 427337);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler81() {
// Good luck!
return true;
}
euler81();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>