Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
s_correct = 1;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
2 | Pass |
n = 2;
s_correct = 5;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
3 | Pass |
n = 3;
s_correct = 23;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
4 | Pass |
n = 5;
s_correct = 719;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
5 | Pass |
n = 8;
s_correct = 362879;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
6 | Pass |
n = 10;
s_correct = 39916799;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
7 | Pass |
n = 12;
s_correct = 6227020799;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
8 | Pass |
n = 15;
s_correct = 20922789887999;
assert(isequal(sumOfSeriesVI(n),s_correct))
ans =
[]
|
Project Euler: Problem 5, Smallest multiple
397 Solvers
Cell Counting: How Many Draws?
581 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
376 Solvers
276 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!