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))
B =
1
|
2 | Pass |
A = [1 2 4
3 6 2
2 4 7];
B_correct = 14;
assert(isequal(diagSum(A),B_correct))
B =
14
|
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))
B =
32
|
376 Solvers
450 Solvers
Convert given decimal number to binary number.
636 Solvers
359 Solvers
241 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!