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

622 B

id challengeType title videoUrl localeTitle
5900f4861000cf542c50ff99 5 Problem 282: The Ackermann function

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler282(), 1098988351, "<code>euler282()</code> should return 1098988351.");'

Challenge Seed

function euler282() {
  // Good luck!
  return true;
}

euler282();

Solution

// solution required