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 |
x = 1;
y_correct = 1;
assert(isequal(rotated(x),y_correct))
|
2 | Pass |
x = [1 2 3 ; 4 5 6 ];
y_correct = [ 3 6; 2 5; 1 4 ];
assert(isequal(rotated(x),y_correct))
|
Getting the row and column location from a matrix
192 Solvers
Switch matrix to a column vector
189 Solvers
263 Solvers
101 Solvers
94 Solvers