Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = (1:5)';
y_correct = [1 5 4 3 2;2 1 5 4 3;3 2 1 5 4;4 3 2 1 5;5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
2 | Fail |
x = (1:3)';
y_correct = [1 3 2;2 1 3;3 2 1];
assert(isequal(shifted(x),y_correct))
|
3 | Fail |
x = (1:4)';
y_correct = [1 4 3 2;2 1 4 3;3 2 1 4;4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
4 | Fail |
x = (1:7)';
y_correct = [1 7 6 5 4 3 2;2 1 7 6 5 4 3;3 2 1 7 6 5 4;...
4 3 2 1 7 6 5;5 4 3 2 1 7 6; 6 5 4 3 2 1 7; 7 6 5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
5 | Fail |
x = (1:6)';
y_correct = [1 6 5 4 3 2;2 1 6 5 4 3;3 2 1 6 5 4;...
4 3 2 1 6 5;5 4 3 2 1 6; 6 5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
584 Solvers
965 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!