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));
run_length =
2
ind =
1
start_index =
1
|
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));
run_length =
4
ind =
4
start_index =
4
|
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));
run_length =
1
ind =
1
start_index =
1
|
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));
run_length =
1
ind =
1
start_index =
1
|
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));
run_length =
6
ind =
1
start_index =
1
|
1104 Solvers
Get the length of a given vector
1365 Solvers
Compute a dot product of two vectors x and y
645 Solvers
624 Solvers
construct matrix with identical rows
138 Solvers