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))
|
The Goldbach Conjecture, Part 2
1284 Solvers
376 Solvers
232 Solvers
Matlab Basics - Pick out parts of a vector
198 Solvers
Calculate square and cube of number
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!