Problem 2153. Replace pattern 0 1 0 and 1 0 1
Find and replace a pattern in a row of zeroes and ones.
- Find 1 0 1 and replace it with 1 1 1
- Find 0 1 0 and replace it with 0 0 0
Example:
Input : [ 1 1 1 0 1 1 0 0 0 1 0 0 0 ] Output: [ 1 1 1 1 1 1 0 0 0 0 0 0 0 ]
Solution Stats
Problem Comments
- 
		2 Comments
		goc3
    	on 15 Mar 2017
	
	
  	Additional test cases have been added.
		Rafael S.T. Vieira
    	on 24 Jul 2020
	
	
  	What about intersecting cases? like 1 0 1 0 or 0 1 0 1 ?
Solution Comments
Show commentsProblem Recent Solvers154
Suggested Problems
- 
         
         838 Solvers 
- 
         Who is the smartest MATLAB programmer? 776 Solvers 
- 
         Create an n-by-n null matrix and fill with ones certain positions 668 Solvers 
- 
         
         7733 Solvers 
- 
         
         547 Solvers 
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!