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 |
%%
A = 1;
B_correct = 1;
assert(isequal(diagSum(A),B_correct))
|
2 | Pass |
%%
A = [1 2 4
3 6 2
2 4 7];
B_correct = 14;
assert(isequal(diagSum(A),B_correct))
|
3 | Pass |
%%
A = [ 1 2 3 4
8 7 6 5
9 10 11 12
16 15 14 13 ];
B_correct = 32;
assert(isequal(diagSum(A),B_correct))
|
1836 Solvers
284 Solvers
1425 Solvers
724 Solvers
320 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!