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))))
|
17468 Solvers
184 Solvers
Area of an equilateral triangle
2759 Solvers
Sum of diagonals elements of a matrix
166 Solvers
2617 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!