This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m = 1;
n = 1;
a_correct = 3;
assert(isequal(ack(m,n),a_correct))
ans =
3
|
2 | Pass |
m = 3;
n = 4;
a_correct = 125;
assert(isequal(ack(m,n),a_correct))
ans =
125
|
3 | Pass |
m = 3;
n = 2;
a_correct = 29;
assert(isequal(ack(m,n),a_correct))
ans =
29
|
Return the 3n+1 sequence for n
6167 Solvers
1050 Solvers
Similar Triangles - find the height of the tree
203 Solvers
Rounding off numbers to n decimals
1050 Solvers
302 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!