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 0 -1];
y_correct = -1;
assert(isequal(largest_territory(X),y_correct));
|
2 | Pass |
X = [1 1 1 2 2];
y_correct = 1;
assert(isequal(largest_territory(X),y_correct));
|
3 | Pass |
X = [1 1 1 2 3; 1 1 1 2 3; 1 1 1 2 3; 1 1 2 2 2; 2 2 2 2 2];
y_correct = 1;
assert(isequal(largest_territory(X),y_correct));
|
4 | Pass |
X = [1 1 1 1 1 1 1; 1 1 2 2 2 1 1; 1 1 2 2 2 1 1; 1 1 2 2 2 1 1; 1 1 2 2 1 1 1; 1 1 1 1 1 1 1; 3 3 3 3 3 3 3];
y_correct = 1;
assert(isequal(largest_territory(X),y_correct));
|
5 | Pass |
X = [1:100; 101:150, 51:100; 101:175, 76:100; 101:190, 91:100];
y_correct = 91;
assert(isequal(largest_territory(X),y_correct));
|
17222 Solvers
248 Solvers
Vectorize the digits of an Integer
269 Solvers
Set some matrix elements to zero
290 Solvers
Generate a string like abbcccddddeeeee
234 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!