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 |
n = 1;
y_correct = 1;
assert(isequal(pwr(n),y_correct))
ans =
1
|
2 | Pass |
n = 2;
y_correct = 4;
assert(isequal(pwr(n),y_correct))
ans =
4
|
3 | Pass |
n = 3;
y_correct = 27;
assert(isequal(pwr(n),y_correct))
ans =
27
|
4 | Pass |
n = 4;
y_correct = 256;
assert(isequal(pwr(n),y_correct))
ans =
256
|
5 | Pass |
n = 5;
y_correct = 3125;
assert(isequal(pwr(n),y_correct))
ans =
3125
|
6 | Pass |
n = 9;
y_correct = 387420489;
assert(isequal(pwr(n),y_correct))
ans =
387420489
|
Determine whether a vector is monotonically increasing
11925 Solvers
Swap the first and last columns
12417 Solvers
531 Solvers
273 Solvers
67 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!