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 |
binary_array = [1 1 0 1];
expected_length = 2;
expected_index = 1;
[actual_length actual_index] = longest_run(binary_array);
assert(isequal(expected_length, actual_length));
assert(isequal(expected_index, actual_index));
|
2 | Pass |
binary_array = [1 1 0 1 0 0 0 0 1 1 1];
expected_length = 4;
expected_index = 5;
[actual_length actual_index] = longest_run(binary_array);
assert(isequal(expected_length, actual_length));
assert(isequal(expected_index, actual_index));
|
3 | Pass |
binary_array = [1 0];
expected_length = 1;
expected_index = 1;
[actual_length actual_index] = longest_run(binary_array);
assert(isequal(expected_length, actual_length));
assert(isequal(expected_index, actual_index));
|
4 | Pass |
binary_array = [1];
expected_length = 1;
expected_index = 1;
[actual_length actual_index] = longest_run(binary_array);
assert(isequal(expected_length, actual_length));
assert(isequal(expected_index, actual_index));
|
5 | Pass |
binary_array = [1 1 1 1 1 1];
expected_length = 6;
expected_index = 1;
[actual_length actual_index] = longest_run(binary_array);
assert(isequal(expected_length, actual_length));
assert(isequal(expected_index, actual_index));
|
405 Solvers
399 Solvers
Switch matrix to a column vector
260 Solvers
Pernicious Anniversary Problem
735 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!