Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s = '1001';
y_correct = '0110';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
|
2 | Pass |
s = '11';
y_correct = '00';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
|
3 | Pass |
s = '1';
y_correct = '0';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
|
4 | Pass |
s = '100000001';
y_correct = '011111110';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
|
5 | Pass |
s = '00001';
y_correct = '11110';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
|
Make a random, non-repeating vector.
2802 Solvers
248 Solvers
420 Solvers
321 Solvers
2099 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!