Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 3 6 9];
y_correct = [2 9 216 6561];
assert(isequal(index_power(x),y_correct))
|
2 | Pass |
x = [1 5 11 0 -3 -6];
y_correct = [1 25 1331 0 -243 46656];
assert(isequal(index_power(x),y_correct))
|
3 | Pass |
x = [0 8 -12 0 -8 -2];
y_correct = [0 64 -1728 0 -32768 64];
assert(isequal(index_power(x),y_correct))
|
Get the area codes from a list of phone numbers
532 Solvers
620 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
286 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!