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