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))
|
397 Solvers
Flip the main diagonal of a matrix
426 Solvers
Sort numbers by outside digits
116 Solvers
Generate N equally spaced intervals between -L and L
441 Solvers
243 Solvers