How does this solution generate such less size inspite of using so many functions?
The way Cody scores things, a string is just a string, even if it is basically executable code. So there are tricks you can do with regexp or str2num to make your score a lot lower than it otherwise would be.
Ok, Thanks for information.
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))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!