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(sumOfSeriesII(n),s_correct))
|
2 | Pass |
%%
n = 2;
s_correct = 10;
assert(isequal(sumOfSeriesII(n),s_correct))
|
3 | Pass |
%%
n = 3;
s_correct = 35;
assert(isequal(sumOfSeriesII(n),s_correct))
|
4 | Pass |
%%
n = 4;
s_correct = 84;
assert(isequal(sumOfSeriesII(n),s_correct))
|
5 | Pass |
%%
n = 5;
s_correct = 165;
assert(isequal(sumOfSeriesII(n),s_correct))
|
54320 Solvers
9829 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!