I currently have code that prints out a coordinate system as shown below. The code asks the user to input dimensions and then prints out a coordinate system appropriately. The board below is a 5 x 5.
(0, 0) (1, 0) (2, 0) (3, 0) (4, 0)
(0, 1) (1, 1) (2, 1) (3, 1) (4, 1)
(0, 2) (1, 2) (2, 2) (3, 2) (4, 2)
(0, 3) (1, 3) (2, 3) (3, 3) (4, 3)
(0, 4) (1, 4) (2, 4) (3, 4) (4, 4)
I was wondering if anyone could give me a hand as to how to convert this into a board that looks like this:
X O X O X
O X O X O
X O X O X
O X O X O
X O X O X
So far I've tried making a list of strings and appending it the the coordinate system but haven't quite got the desired outcome. if anyone has any hints they would be much appreciated.