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))
|
Back to basics 20 - singleton dimensions
225 Solvers
Split a string into chunks of specified length
168 Solvers
134 Solvers
1229 Solvers
730 Solvers