Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [2 3 4];
assert(isequal(isItSquared(a),true))
|
2 | Pass |
a = [20:30];
assert(isequal(isItSquared(a),false))
|
3 | Pass |
a = [1];
assert(isequal(isItSquared(a),true))
|
4 | Pass |
a = [6 10 12 14 36 101];
assert(isequal(isItSquared(a),true))
|
5 | Pass |
a = [6 10 12 14 101];
assert(isequal(isItSquared(a),false))
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
Vectorize the digits of an Integer
269 Solvers
The sum of the numbers in the vector
426 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!