freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-324-building-a-towe...

56 lines
1.2 KiB
Markdown
Raw Normal View History

---
id: 5900f4b11000cf542c50ffc3
challengeType: 5
title: 'Problem 324: Building a tower'
videoUrl: ''
localeTitle: 'Problema 324: Construindo uma torre'
---
## Description
<section id="description"> Seja f (n) o número de maneiras de preencher uma torre 3 × 3 × n com blocos de 2 × 1 × 1. Você tem permissão para girar os blocos da maneira que quiser; no entanto, rotações, reflexões, etc. da própria torre são contadas como distintas. Por exemplo (com q = 100000007): f (2) = 229, f (4) = 117805, f (10) mod q = 96149360, f (103) mod q = 24806056, f (106) mod q = 30808124. <p> Encontre f (1010000) mod 100000007. </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler324()</code> deve retornar 96972774.
testString: 'assert.strictEqual(euler324(), 96972774, "<code>euler324()</code> should return 96972774.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler324() {
// Good luck!
return true;
}
euler324();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>