Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
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 | Fail |
v = [1 2 3];
y_correct = [1 2 3;
2 3 0;
3 0 0];
assert(isequal(vrooom(v),y_correct))
|
3 | Fail |
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))
|
27983 Solvers
Remove the small words from a list of words.
672 Solvers
4325 Solvers
188 Solvers
480 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!