This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [0 1 1 0 -1 1 0 1
0 1 1 0 -1 1 0 1
0 1 0 0 -1 1 0 1
1 2 2 1 0 2 1 2];
b = [2 4];
out = matchPattern(a);
assert(isequal(out(:), b(:)))
|
2 | Pass |
%%
a = [0 1 2 3 4 5 6 7
1 2 3 4 5 6 7 8
0 2 3 4 5 7 8 0
0 0 2 3 4 5 6 7];
b = [2];
out = matchPattern(a);
assert(isequal(out(:), b(:)))
|
Make a run-length companion vector
512 Solvers
Calculate the area of a triangle between three points
871 Solvers
483 Solvers
450 Solvers
Convert given decimal number to binary number.
636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!