interesting solution... I like it :)
I disagree. Almost every problem has a solution wrapped in this function. It's cheating as it hides the complexity of the code from the scoring algorithm. That's why "eval" is not allowed ...
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [2 3 4];
assert(isequal(isItSquared(a),true))
y =
1
ans =
[]
|
2 | Pass |
%%
a = [20:30];
assert(isequal(isItSquared(a),false))
y =
0
ans =
[]
|
3 | Pass |
%%
a = [1];
assert(isequal(isItSquared(a),true))
y =
1
ans =
[]
|
4 | Pass |
%%
a = [6 10 12 14 36 101];
assert(isequal(isItSquared(a),true))
y =
1
ans =
[]
|
5 | Pass |
%%
a = [6 10 12 14 101];
assert(isequal(isItSquared(a),false))
y =
0
ans =
[]
|
Replace NaNs with the number that appears to its left in the row.
1711 Solvers
Get the area codes from a list of phone numbers
417 Solvers
1879 Solvers
265 Solvers
262 Solvers