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))))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Find the two most distant points
1628 Solvers
Convert from Base 10 to base 5
203 Solvers
07 - Common functions and indexing 3
317 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!