This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [1 0 0; 0 0 1; 0 0 0];
tf_correct = true;
assert(isequal(queens(a),tf_correct))
|
2 | Pass |
%%
a = [0 0 0 1; 1 0 0 0; 0 0 1 0; 0 1 0 0];
tf_correct = false;
assert(isequal(queens(a),tf_correct))
|
3 | Pass |
%%
a = [1 0 0 0 0; 0 0 0 1 1];
tf_correct = false;
assert(isequal(queens(a),tf_correct))
|
4 | Pass |
%%
a = [ ...
0 0 1 0 0 0 0 0; 0 0 0 0 0 0 1 0; 0 1 0 0 0 0 0 0; 0 0 0 0 0 0 0 1;
0 0 0 0 0 1 0 0; 0 0 0 1 0 0 0 0; 1 0 0 0 0 0 0 0; 0 0 0 0 1 0 0 0];
tf_correct = true;
assert(isequal(queens(a),tf_correct))
|
5 | Pass |
%%
a = ones(15,7);
tf_correct = false;
assert(isequal(queens(a),tf_correct))
|
6 | Pass |
%%
a = zeros(20,23);
a(1,22) = 1;
a(2,23) = 1;
tf_correct = false;
assert(isequal(queens(a),tf_correct))
|
7 | Pass |
%%
a = [1 0; 0 1];
tf_correct = false;
assert(isequal(queens(a),tf_correct))
|
213 Solvers
1425 Solvers
2810 Solvers
Magic is simple (for beginners)
2749 Solvers
583 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!