This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
M = 1;
N = 1;
y_correct = [2];
assert(isequal(sumMyIndices(M,N),y_correct))
|
2 | Pass |
%%
M = 1;
N = 2;
y_correct = [2,3];
assert(isequal(sumMyIndices(M,N),y_correct))
|
3 | Pass |
%%
M = 3;
N = 2;
y_correct = [2,3; 3 4; 4 5];
assert(isequal(sumMyIndices(M,N),y_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
11620 Solvers
735 Solvers
Number of 1s in a binary string
1228 Solvers
Replace multiples of 5 with NaN
282 Solvers
142 Solvers