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 2;3 4];
y_correct = [3 1;4 2];
assert(isequal(rotNeg90(x),y_correct))
ans =
3 1
4 2
|
2 | Pass |
x = [1 2 3;4 5 6;7 8 9];
y_correct = [7 4 1;8 5 2;9 6 3];
assert(isequal(rotNeg90(x),y_correct))
ans =
7 4 1
8 5 2
9 6 3
|
The Goldbach Conjecture, Part 2
964 Solvers
263 Solvers
185 Solvers
164 Solvers
127 Solvers