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
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers29
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2822 Solvers
-
Project Euler: Problem 9, Pythagorean numbers
1404 Solvers
-
585 Solvers
-
742 Solvers
-
If you have matrix A, create matrix B using matrix A as an "element"
129 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
See also Cody Problem 734.