Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a_in = ...
[0 0 0 2
1 1 0 0
0 0 2 0
0 0 0 1];
a_out_correct = ...
[0 0 0 0
0 1 1 2
0 0 0 0
1 0 2 0];
assert(isequal(traffic_step(a_in),a_out_correct))
[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 traffic_step (line 2)
In ScoringEngineTestPoint1 (line 11)
In solutionTest (line 3)]
|
2 | Pass |
a_in = ...
[0 0 2
2 0 0];
a_out_correct = ...
[2 0 0
0 0 2];
assert(isequal(traffic_step(a_in),a_out_correct))
[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 traffic_step (line 2)
In ScoringEngineTestPoint2 (line 7)
In solutionTest (line 5)]
|
3 | Pass |
a_in = ...
[1 0 2
2 0 0];
a_out_correct = ...
[2 1 0
0 0 2];
assert(isequal(traffic_step(a_in),a_out_correct))
[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 traffic_step (line 2)
In ScoringEngineTestPoint3 (line 7)
In solutionTest (line 7)]
|
4 | Pass |
a_in = ...
[0 0 2
1 1 1
2 0 0];
a_out_correct = ...
[2 0 2
1 1 1
0 0 0];
assert(isequal(traffic_step(a_in),a_out_correct))
[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 traffic_step (line 2)
In ScoringEngineTestPoint4 (line 9)
In solutionTest (line 9)]
|
5 | Pass |
a_in = ...
[0 2 2 2 0 0
1 1 0 2 0 0
0 0 0 0 2 0
1 1 0 1 1 2
0 0 1 2 0 0
0 0 0 2 0 1];
a_out_correct = ...
[0 2 2 2 0 0
0 1 1 2 0 0
0 0 0 2 2 0
0 1 1 1 1 0
0 0 1 0 0 2
1 0 0 2 0 0];
assert(isequal(traffic_step(a_in),a_out_correct))
[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 traffic_step (line 2)
In ScoringEngineTestPoint5 (line 15)
In solutionTest (line 11)]
|
6 | Pass |
a_in = ...
[0 1 1 1
0 0 0 0];
a_out_correct = ...
[1 0 1 1
0 0 0 0];
assert(isequal(traffic_step(a_in),a_out_correct))
[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 traffic_step (line 2)
In ScoringEngineTestPoint6 (line 7)
In solutionTest (line 13)]
|
7 | Pass |
a_in = ...
[0
2
2];
a_out_correct = ...
[2
0
2];
assert(isequal(traffic_step(a_in),a_out_correct))
[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 traffic_step (line 2)
In ScoringEngineTestPoint7 (line 9)
In solutionTest (line 15)]
|
Find relatively common elements in matrix rows
645 Solvers
83 Solvers
Create a matrix X, where each column is a shifted copy of the vector v
116 Solvers
Calculate the Hamming distance between two strings
144 Solvers
479 Solvers