This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0];
tf_correct = 1;
assert(isequal(takuzu_row(x),tf_correct))
|
2 | Pass |
x = [1 0 0];
tf_correct = 0;
assert(isequal(takuzu_row(x),tf_correct))
|
3 | Pass |
x = [1 1 0 0];
tf_correct = 1;
assert(isequal(takuzu_row(x),tf_correct))
|
4 | Pass |
x = [1 0 1 0 1 0 1 1 0 0];
tf_correct = 1;
assert(isequal(takuzu_row(x),tf_correct))
|
5 | Pass |
x = [1 1 0 0 1 1 1 0 0 0];
tf_correct = 0;
assert(isequal(takuzu_row(x),tf_correct))
|
6 | Pass |
x = [1 1 0 0 1 1 0 0 1 0 1 1];
tf_correct = 0;
assert(isequal(takuzu_row(x),tf_correct))
|
7 | Pass |
x = [1 1 0 1 1 0 1 1 0 1 0 0 1 0 0 1 0 0];
tf_correct = 1;
assert(isequal(takuzu_row(x),tf_correct))
|
Back to basics 9 - Indexed References
348 Solvers
104 Solvers
Determine Whether an array is empty
561 Solvers
579 Solvers
85 Solvers