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 | Fail |
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 | Fail |
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 | Fail |
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 | Fail |
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 | Fail |
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));
|
Which values occur exactly three times?
3304 Solvers
747 Solvers
196 Solvers
310 Solvers
205 Solvers