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))
ans =
1
|
2 | Pass |
%%
n = 2;
s_correct = 10;
assert(isequal(sumOfSeriesII(n),s_correct))
ans =
10
|
3 | Pass |
%%
n = 3;
s_correct = 35;
assert(isequal(sumOfSeriesII(n),s_correct))
ans =
35
|
4 | Pass |
%%
n = 4;
s_correct = 84;
assert(isequal(sumOfSeriesII(n),s_correct))
ans =
84
|
5 | Pass |
%%
n = 5;
s_correct = 165;
assert(isequal(sumOfSeriesII(n),s_correct))
ans =
165
|
546 Solvers
219 Solvers
Number of digits in an integer
336 Solvers
191 Solvers
2042 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!