Given a x-by-x matrix filled with ones (x is odd and > 3). Use 0s to draw a number 0 into it! Like this:
x = 5, y =
1 0 0 0 1
0 1 1 1 0
0 1 1 1 0
0 1 1 1 0
1 0 0 0 1
x = 7, y =
1 0 0 0 0 0 1
0 1 1 1 1 1 0
0 1 1 1 1 1 0
0 1 1 1 1 1 0
0 1 1 1 1 1 0
0 1 1 1 1 1 0
1 0 0 0 0 0 1
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers1906
Suggested Problems
-
4326 Solvers
-
920 Solvers
-
Relative ratio of "1" in binary number
1596 Solvers
-
Deleting an element in a matrix
490 Solvers
-
Return fibonacci sequence do not use loop and condition
854 Solvers
More from this Author12
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I got the output to be identical to the assertions, but somehow it detects it as assertion failed. Is there an issue with the test cases?
Nice one