Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 1;
y_correct = 1;
assert(isequal(pow2Pow(x),y_correct))
ans =
1
|
2 | Fail |
x = 2;
y =2;
y_correct = 4;
assert(isequal(pow2Pow(x,y),y_correct))
ans =
2 2
|
3 | Fail |
x = 2;
y= 2;
z=3;
y_correct = 64;
assert(isequal(pow2Pow(x,y,z),y_correct))
ans =
2 2 3
|
1263 Solvers
594 Solvers
All your base are belong to us
463 Solvers
Make a vector of prime numbers
194 Solvers
Create sine function out of cosine
66 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!