Ackerman Function - MATLAB Cody - MATLAB Central

Problem 46591. Ackerman Function

Difficulty:Rate
Write the ackerman function, which conforms to 3 constraints:
ack(0, n) = n+1
ack(m, 0) = ack(m-1, 1)
ack(m, n) = ack(m-1, ack(m, n-1))

Solution Stats

77.78% Correct | 22.22% Incorrect
Last Solution submitted on Aug 19, 2024

Problem Comments

Solution Comments

Show comments
Primes and Rough Numbers, Basic ideas
What is a rough number? What can they be used...
3
5

Problem Recent Solvers27

Suggested Problems

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page