I have not heard of ismember before, thanks.
As primitive as my solutions are, I learn just as much from reading other peoples as doing the problem itself. Great setup mathworks :)
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [2 3 4];
assert(isequal(isItSquared(a),true))
ans =
1
|
2 | Pass |
%%
a = [20:30];
assert(isequal(isItSquared(a),false))
ans =
0
|
3 | Pass |
%%
a = [1];
assert(isequal(isItSquared(a),true))
ans =
1
|
4 | Pass |
%%
a = [6 10 12 14 36 101];
assert(isequal(isItSquared(a),true))
ans =
1
|
5 | Pass |
%%
a = [6 10 12 14 101];
assert(isequal(isItSquared(a),false))
ans =
0
|
Remove the small words from a list of words.
672 Solvers
306 Solvers
Number of digits in an integer
336 Solvers
Sum of odd numbers in a matrix
311 Solvers
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!