Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y_correct = [1 2 3;2 3 2; 3 2 1];
assert(isequal(mirror_anti_diag(x),y_correct))
|
2 | Pass |
x = 1;
y_correct = [1];
assert(isequal(mirror_anti_diag(x),y_correct))
|
3 | Pass |
x = 4;
y_correct = [1 2 3 4; 2 3 4 3; 3 4 3 2; 4 3 2 1 ];
assert(isequal(mirror_anti_diag(x),y_correct))
|
36320 Solvers
1137 Solvers
339 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
381 Solvers
412 Solvers