Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [2 3 4];
assert(isequal(isItSquared(a),true))
pp =
1×3 logical array
1 0 0
|
2 | Pass |
a = [20:30];
assert(isequal(isItSquared(a),false))
pp =
1×11 logical array
0 0 0 0 0 0 0 0 0 0 0
|
3 | Pass |
a = [1];
assert(isequal(isItSquared(a),true))
pp =
logical
1
|
4 | Pass |
a = [6 10 12 14 36 101];
assert(isequal(isItSquared(a),true))
pp =
1×6 logical array
1 0 0 0 0 0
|
5 | Pass |
a = [6 10 12 14 101];
assert(isequal(isItSquared(a),false))
pp =
1×5 logical array
0 0 0 0 0
|
786 Solvers
Determine the number of odd integers in a vector
435 Solvers
2338 Solvers
Find out sum of all elements of given Matrix
349 Solvers
344 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!