please help me out in understanding the problem
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
area_correct = 25;
tolerance = 1e-12;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
|
2 | Fail |
n = 2;
area_correct = 41;
tolerance = 1e-12;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
|
3 | Fail |
n = 3;
area_correct = 66;
tolerance = 1e-12;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
|
4 | Fail |
n = 50;
area_correct = 439116598409;
tolerance = 1e-3;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
|
Find the sum of all the numbers of the input vector
25617 Solvers
Find common elements in matrix rows
809 Solvers
Back to basics 20 - singleton dimensions
225 Solvers
Simple equation: Annual salary
3407 Solvers
264 Solvers