Given an input character string (e.g. '1001'), return a character string with the bits flipped ('0110').
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers537
Suggested Problems
-
Return the largest number that is adjacent to a zero
5527 Solvers
-
Maximum running product for a string of numbers
2257 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2055 Solvers
-
Back to basics 25 - Valid variable names
339 Solvers
-
Replace Nonzero Numbers with 1
448 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The test suite does not check that the solution is a character string, but the problem definition requires that it should.
Added this check. (I messed it up a bit the first time I tried to do it, so sorry for some interim weirdness.)