Find code that adds one 0 to each sequence of 0 in a string (composed with only 0 or 1).
For example:
'1010' -> '100100' '0110' -> '001100' '1000' -> '10000' '1111' -> '1111'
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers337
Suggested Problems
-
Read a column of numbers and interpolate missing data
2350 Solvers
-
Calculate the Levenshtein distance between two strings
1506 Solvers
-
How to find the position of an element in a vector without using the find function
2812 Solvers
-
Set the array elements whose value is 13 to 0
1435 Solvers
-
1064 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Didn't really understand the problem right from reading the task itself, but from reading the test cases. Really fun problem though. First time I used regexprep function, so I learned a lot!