Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 1; 1 -1; -1 1; -1 -1; 0 0];
y_correct = 4;
assert(isequal(cover_area(x),y_correct))
|
2 | Pass |
x = [1 1; 1 -2; -2 1; -1 -2; 2 -1; -3 0; 0.2*randn(4,2)];
y_correct = 11;
assert(isequal(cover_area(x),y_correct))
|
3 | Pass |
x = [1 1; 1 -2; -1 1; -1 -2; 3 4; 0.2*randn(10,2)];
y_correct = 12;
assert(isequal(cover_area(x),y_correct))
|
Find the alphabetic word product
2321 Solvers
739 Solvers
Reverse the Words (not letters) of a String
297 Solvers
315 Solvers
556 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!