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))
|
386 Solvers
Create an n-by-n null matrix and fill with ones certain positions
268 Solvers
Sum the numbers on the main diagonal
453 Solvers
484 Solvers
Is this triangle right-angled?
2394 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!