Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
a = [2 3 4];
assert(isequal(isItSquared(a),true))
Error: Output argument "b" (and maybe others) not assigned during call to "/users/msssystem12/isItSquared.m>isItSquared".
|
2 | Fail |
%%
a = [20:30];
assert(isequal(isItSquared(a),false))
Error: Output argument "b" (and maybe others) not assigned during call to "/users/msssystem12/isItSquared.m>isItSquared".
|
3 | Pass |
%%
a = [1];
assert(isequal(isItSquared(a),true))
|
4 | Fail |
%%
a = [6 10 12 14 36 101];
assert(isequal(isItSquared(a),true))
Error: Output argument "b" (and maybe others) not assigned during call to "/users/msssystem12/isItSquared.m>isItSquared".
|
5 | Fail |
%%
a = [6 10 12 14 101];
assert(isequal(isItSquared(a),false))
Error: Output argument "b" (and maybe others) not assigned during call to "/users/msssystem12/isItSquared.m>isItSquared".
|
Arrange Vector in descending order
4075 Solvers
724 Solvers
320 Solvers
484 Solvers
2099 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!