Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = ...
[ 7 2 5
4 0 8
1 6 3];
tf_correct = true;
assert(isequal(knights_tour(a),tf_correct))
|
2 | Pass |
a = ...
[ 1 0 0
0 0 2];
tf_correct = true;
assert(isequal(knights_tour(a),tf_correct))
|
3 | Pass |
a = ...
[ 15 5 12 3
0 2 9 6
8 11 4 13
1 14 7 10];
tf_correct = false;
assert(isequal(knights_tour(a),tf_correct))
|
4 | Pass |
a = ...
[ 0 5 12 3
15 2 9 6
8 11 4 13
1 14 7 10];
tf_correct = true;
assert(isequal(knights_tour(a),tf_correct))
|
5 | Pass |
a = [22 29 4 31 16 35;3 32 23 34 5 14;28 21 30 15 36 17;9 2 33 24 13 6;20 27 8 11 18 25;1 10 19 26 7 12];
tf_correct = true;
assert(isequal(knights_tour(a),tf_correct))
|
6 | Pass |
a = [22 29 4 31 16 35;3 32 23 34 5 14;28 21 30 15 0 17;2 9 33 24 13 6;20 27 8 11 18 25;1 10 19 26 7 12];
tf_correct = false;
assert(isequal(knights_tour(a),tf_correct))
|
7 | Pass |
a = [1 0 0;0 0 0;2 0 0];
tf_correct = false;
assert(isequal(knights_tour(a),tf_correct))
|
Find state names that start with the letter N
598 Solvers
261 Solvers
216 Solvers
Output any real number that is neither positive nor negative
316 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!