Given a 2D array of ones and zeros, generate an equivalent sized checkerboard array of ones and twos. The checkerboard pattern starts with 2:
[2,1,2,1,2; 1,2,1,2,1; 2,1,2,1,2];
Then set this checkerboard array to zero wherever the original was zero.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers32
Suggested Problems
-
Find the peak 3n+1 sequence value
2571 Solvers
-
3094 Solvers
-
How to find the position of an element in a vector without using the find function
2822 Solvers
-
576 Solvers
-
Find and replaces spaces from a input string with *
172 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
You should add a test case where the last row and/or last column of x contains only zeroes.