freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-282-the-ackermann-f...

55 lines
622 B
Markdown
Raw Normal View History

---
id: 5900f4861000cf542c50ff99
challengeType: 5
title: 'Problem 282: The Ackermann function'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler282(), 1098988351, "<code>euler282()</code> should return 1098988351.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler282() {
// Good luck!
return true;
}
euler282();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>