This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
s_correct = 1;
assert(isequal(sumOfSeriesVI(n),s_correct))
|
2 | Pass |
n = 2;
s_correct = 5;
assert(isequal(sumOfSeriesVI(n),s_correct))
|
3 | Pass |
n = 3;
s_correct = 23;
assert(isequal(sumOfSeriesVI(n),s_correct))
|
4 | Pass |
n = 10;
s_correct = 39916799;
assert(isequal(sumOfSeriesVI(n),s_correct))
|
Find the sum of the elements in the "second" diagonal
994 Solvers
420 Solvers
227 Solvers
484 Solvers
264 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!