This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
v = [1 3 6 9 11];
y_correct = [1 3 6 9 11;
3 6 9 11 0;
6 9 11 0 0;
9 11 0 0 0;
11 0 0 0 0];
assert(isequal(vrooom(v),y_correct))
|
2 | Pass |
%%
v = [1 2 3];
y_correct = [1 2 3;
2 3 0;
3 0 0];
assert(isequal(vrooom(v),y_correct))
|
3 | Pass |
%%
v = [-1 0 2 8];
y_correct = [-1 0 2 8;
0 2 8 0;
2 8 0 0;
8 0 0 0];
assert(isequal(vrooom(v),y_correct))
|
298 Solvers
Getting the indices from a vector
1448 Solvers
Getting the absolute index from a matrix
178 Solvers
Make a run-length companion vector
453 Solvers
325 Solvers