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 = 0;
assert(isequal(one_Comp(x),y_correct))
ans =
0
|
2 | Pass |
x = 100;
y_correct = [0,1,1];
assert(isequal(one_Comp(x),y_correct))
ans =
0 1 1
|
3 | Pass |
x = 1110;
y_correct = [0,0,0,1];
assert(isequal(one_Comp(x),y_correct))
ans =
0 0 0 1
|
4 | Pass |
x = 101101101001;
y_correct = [0,1,0,0,1,0,0,1,0,1,1,0];
assert(isequal(one_Comp(x),y_correct))
ans =
0 1 0 0 1 0 0 1 0 1 1 0
|
5 | Pass |
x = 00110;
y_correct = [1,1,0,0,1];
assert(isequal(one_Comp(x),y_correct))
ans =
0 0 1
|
1529 Solvers
616 Solvers
615 Solvers
Get the length of a given vector
1377 Solvers
624 Solvers