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(sumOfSeriesI(n),s_correct))
|
2 | Pass |
%%
n = 2;
s_correct = 2+2;
assert(isequal(sumOfSeriesI(n),s_correct))
|
3 | Pass |
%%
n = 10;
s_correct = 10+90;
assert(isequal(sumOfSeriesI(n),s_correct))
|
4 | Pass |
%%
n = 15;
s_correct = 15+210;
assert(isequal(sumOfSeriesI(n),s_correct))
|
1882 Solvers
227 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Sum the 'edge' values of a matrix
232 Solvers
Find the Oldest Person in a Room
5095 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!