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 |
x = 1;
y_correct = 1;
assert(isequal(sumofseries(x),y_correct))
ans =
1
|
2 | Pass |
x = 2;
y_correct = 5;
assert(isequal(sumofseries(x),y_correct))
ans =
5
|
3 | Pass |
x = 4;
y_correct = 288;
assert(isequal(sumofseries(x),y_correct))
ans =
288
|
First non-zero element in each column
471 Solvers
304 Solvers
285 Solvers
Find the index of n in magic(n)
129 Solvers
58 Solvers