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(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In matchPattern (line 2)
In ScoringEngineTestPoint1 (line 7)
In solutionTest (line 3)]
|
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(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In matchPattern (line 2)
In ScoringEngineTestPoint2 (line 7)
In solutionTest (line 5)]
|
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(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In matchPattern (line 2)
In ScoringEngineTestPoint3 (line 7)
In solutionTest (line 7)]
|
4 | 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 12 13 140 150 160 1700];
b = [4];
out = matchPattern(a);
assert(isequal(out(:), b(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In matchPattern (line 2)
In ScoringEngineTestPoint4 (line 7)
In solutionTest (line 9)]
|
5 | Pass |
a = [0 1 1 0
1 2 3 4
1 5 5 3
2 3 4 5
6 7 7 9
-4 -1 -1 -12
5 6 9 10];
b = [3 6];
out = matchPattern(a);
assert(isequal(out(:), b(:)))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In matchPattern (line 2)
In ScoringEngineTestPoint5 (line 9)
In solutionTest (line 11)]
|
1223 Solvers
Find state names that start with the letter N
598 Solvers
Getting the indices from a vector
3206 Solvers
Create a Multiplication table matrix...
281 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!