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))
|
2 | Pass |
x = 100;
y_correct = [0,1,1];
assert(isequal(one_Comp(x),y_correct))
|
3 | Pass |
x = 1110;
y_correct = [0,0,0,1];
assert(isequal(one_Comp(x),y_correct))
|
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))
|
5 | Fail |
x = 00110;
y_correct = [1,1,0,0,1];
assert(isequal(one_Comp(x),y_correct))
|
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
316 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
320 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!