Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-161-triominoes.russian.md

56 lines
1.7 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: 5900f40d1000cf542c50ff20
challengeType: 5
title: 'Problem 161: Triominoes'
videoUrl: ''
localeTitle: 'Проблема 161: Триомино'
---
## Description
<section id="description"> Триомино представляет собой форму, состоящую из трех квадратов, соединенных по краям. Существуют две основные формы: <p> Если учитывать все возможные ориентации, то есть шесть: </p><p> Любая сетка n на m, для которой nxm делится на 3, может быть разбита триомино. Если мы рассмотрим разметки, которые могут быть получены путем отражения или вращения из другого черепицы как разные, существует 41 способ, по которому решетка с 2 по 9 может быть разбита триоминоями: </p><p> Каким образом можно распределить сетку размером 9 на 12 путем триоминоз? </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler161()</code> должен вернуть 20574308184277972.
testString: 'assert.strictEqual(euler161(), 20574308184277972, "<code>euler161()</code> should return 20574308184277972.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler161() {
// Good luck!
return true;
}
euler161();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>