This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
s_correct = 2;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
1
ans =
2
|
2 | Pass |
n = 3;
s_correct = 20;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
1 2 3
ans =
20
|
3 | Pass |
n = 4;
s_correct = 40;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
1 2 3 4
ans =
40
|
4 | Pass |
n = 10;
s_correct = 440;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
1 2 3 4 5 6 7 8 9 10
ans =
440
|
5 | Pass |
n = 21;
s_correct = 3542;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
ans =
3542
|
6 | Pass |
n = 42;
s_correct = 26488;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
Columns 1 through 30
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Columns 31 through 42
31 32 33 34 35 36 37 38 39 40 41 42
ans =
26488
|
7 | Pass |
n = 88;
s_correct = 234960;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
Columns 1 through 30
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Columns 31 through 60
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
Columns 61 through 88
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
ans =
234960
|
8 | Pass |
n = 99;
s_correct = 333300;
assert(isequal(sumOfSeriesV(n),s_correct))
ans =
Columns 1 through 30
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Columns 31 through 60
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
Columns 61 through 90
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
Columns 91 through 99
91 92 93 94 95 96 97 98 99
ans =
333300
|
281 Solvers
Back to basics 25 - Valid variable names
253 Solvers
175 Solvers
295 Solvers
184 Solvers