freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-424-kakuro.russian.md

55 lines
642 B
Markdown

---
id: 5900f5141000cf542c510026
challengeType: 5
title: 'Problem 424: Kakuro'
videoUrl: ''
localeTitle: 'Задача 424: Какуро'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler424(), 1059760019628, "<code>euler424()</code> should return 1059760019628.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler424() {
// Good luck!
return true;
}
euler424();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>