freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-188-the-hyperexpone...

55 lines
631 B
Markdown

---
id: 5900f4291000cf542c50ff3b
challengeType: 5
title: 'Problem 188: The hyperexponentiation of a number'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
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>