Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
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 | Pass |
x = (1:3)';
y_correct = [1 3 2;2 1 3;3 2 1];
assert(isequal(shifted(x),y_correct))
|
3 | Pass |
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 | Pass |
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 | Pass |
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))
|
2500 Solvers
284 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
413 Solvers
Number of digits in an integer
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!