minor bug there. crashes for vectors and return incorrect answers for some input, for example a_in=[0 1 1 1; 0 0 0 0], a_out=[1 1 0 1; 0 0 0 0] instead of a_correct=[1 0 1 1; 0 0 0 0]. Ned, could you extend the test suite to 'kill' this answer?
Done. Thanks for the comment!
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))
|
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))
|
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))
|
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))
|
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))
|
6 | Fail |
%%
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))
Error: Assertion failed.
|
7 | Fail |
%%
a_in = ...
[0
2
2];
a_out_correct = ...
[2
0
2];
assert(isequal(traffic_step(a_in),a_out_correct))
Error: Subscript indices must either be real positive integers or logicals.
|
1137 Solvers
3651 Solvers
Poker Series 01: isStraightFlush
92 Solvers
50 Solvers
Cell Counting: How Many Draws?
254 Solvers