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(:)))
ans =
1 0 -1 -1 1 -1 1
1 0 -1 -1 1 -1 1
1 -1 0 -1 1 -1 1
1 0 -1 -1 1 -1 1
ans =
1
2
4
ans =
2
4
|
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(:)))
ans =
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 -1
0 1 1 1 1 1 1
ans =
1
2
ans =
2
|
3 | Pass |
%%
a = [0 0 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 = [4];
out = matchPattern(a);
assert(isequal(out(:), b(:)))
ans =
0 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 -1
0 1 1 1 1 1 1
ans =
1
4
ans =
4
|
468 Solvers
794 Solvers
135 Solvers
271 Solvers
394 Solvers