Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(pow2Pow(x),y_correct))
|
2 | Pass |
x = 2;
y =2;
y_correct = 4;
assert(isequal(pow2Pow(x,y),y_correct))
|
3 | Pass |
x = 2;
y= 2;
z=3;
y_correct = 64;
assert(isequal(pow2Pow(x,y,z),y_correct))
|
2486 Solvers
246 Solvers
277 Solvers
Calculate square and cube of number
248 Solvers
Test Problem; Create a 5x5 array containing all ones
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!