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 |
%%
x = 16;
n = 2;
y_correct = logical(1);
assert(isequal(isnpower(x,n),y_correct))
y =
1
|
2 | Pass |
%%
x = 243;
n = 3;
y_correct = logical(1);
assert(isequal(isnpower(x,n),y_correct))
y =
1
|
3 | Pass |
%%
x = 256;
n = 4;
y_correct = logical(1);
assert(isequal(isnpower(x,n),y_correct))
y =
1
|
4 | Pass |
%%
x = 225;
n = 5;
y_correct = logical(0);
assert(isequal(isnpower(x,n),y_correct))
|
5 | Pass |
%%
x = 3125;
n = 5;
y_correct = logical(1);
assert(isequal(isnpower(x,n),y_correct))
y =
1
|
6 | Pass |
%%
x = 1000;
n = 10;
y_correct = logical(1);
assert(isequal(isnpower(x,n),y_correct))
y =
1
|
519 Solvers
147 Solvers
232 Solvers
264 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!