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;
y_correct = [ 1 1 1 1 1 1 1 0];
assert(isequal(find_comp(x),y_correct))
ans =
1×8 logical array
1 1 1 1 1 1 1 0
|
2 | Pass |
x = 67;
y_correct = [1 0 1 1 1 1 0 0];
assert(isequal(find_comp(x),y_correct))
ans =
1×8 logical array
1 0 1 1 1 1 0 0
|
3 | Pass |
x = 114;
y_correct = [ 1 0 0 0 1 1 0 1];
assert(isequal(find_comp(x),y_correct))
ans =
1×8 logical array
1 0 0 0 1 1 0 1
|
4 | Pass |
x = -16;
y_correct = [0 0 0 0 1 1 1 1];
assert(isequal(find_comp(x), y_correct))
ans =
0 0 0 0 1 1 1 1
|
5 | Pass |
x = -45;
y_correct = [0 0 1 0 1 1 0 0];
assert(isequal(find_comp(x), y_correct))
ans =
0 0 1 0 1 1 0 0
|
198 Solvers
Rotate and display numbered tile
221 Solvers
Create a Multiplication table matrix...
226 Solvers
Sum of odd numbers in a matrix
231 Solvers
243 Solvers