Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s = '1001';
y_correct = '0110';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
y =
'0110'
y =
'0110'
|
2 | Pass |
s = '11';
y_correct = '00';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
y =
'00'
y =
'00'
|
3 | Pass |
s = '1';
y_correct = '0';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
y =
'0'
y =
'0'
|
4 | Pass |
s = '100000001';
y_correct = '011111110';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
y =
'011111110'
y =
'011111110'
|
5 | Pass |
s = '00001';
y_correct = '11110';
assert(all(isequal(flipbit(s),y_correct)&ischar(flipbit(s))))
y =
'11110'
y =
'11110'
|
54298 Solvers
3606 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
Returning a "greater than" vector
188 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!