Files
freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-188-the-hyperexponentiation-of-a-number.russian.md

56 lines
1.3 KiB
Markdown
Raw Normal View History

---
id: 5900f4291000cf542c50ff3b
challengeType: 5
title: 'Problem 188: The hyperexponentiation of a number'
videoUrl: ''
localeTitle: 'Задача 188: гиперразложение числа'
---
## Description
<section id="description"> Гиперрезистентность или тетация числа a положительным целым числом b, обозначаемым ↑↑ b или ba, рекурсивно определяется: a ↑↑ 1 = a, a ↑↑ (k + 1) = a (a ↑↑ k ). <p> Таким образом, мы имеем, например, 3 ↑↑ 2 = 33 = 27, поэтому 3 ↑↑ 3 = 327 = 7625597484987 и 3 ↑↑ 4 примерно 103.6383346400240996 * 10 ^ 12. Найдите последние 8 цифр 1777 ↑↑ 1855. </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler188()</code> должен вернуть 95962097.
testString: 'assert.strictEqual(euler188(), 95962097, "<code>euler188()</code> should return 95962097.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler188() {
// Good luck!
return true;
}
euler188();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>