When I create a Map object and read the values given in the statement above two Beehive abjects are created desipte me only wanting a single beehive object in the bottom right of the 2D matrix.
I’ve tried to edit the loops that write the letter B to the desired position of col 0 row 5 but I am at a dead end. What I am getting is this
000 001 002 003 004 005 006
+---+---+---+---+---+---+---+
006| | | | | | | |
+---+---+---+---+---+---+---+
005| B | | | | | | B |
+---+---+---+---+---+---+---+
004| | | | | | | |
+---+---+---+---+---+---+---+
003| | | | | | | |
+---+---+---+---+---+---+---+
002| | | | | | | |
+---+---+---+---+---+---+---+
001| | | | | | | |
+---+---+---+---+---+---+---+
000| | | | | | | |
+---+---+---+---+---+---+---+
but what I want is this
000 001 002 003 004 005 006
+---+---+---+---+---+---+---+
006| | | | | | | |
+---+---+---+---+---+---+---+
005| B | | | | | | |
+---+---+---+---+---+---+---+
004| | | | | | | |
+---+---+---+---+---+---+---+
003| | | | | | | |
+---+---+---+---+---+---+---+
002| | | | | | | |
+---+---+---+---+---+---+---+
001| | | | | | | |
+---+---+---+---+---+---+---+
000| | | | | | | |
+---+---+---+---+---+---+---+
It seems to be placing the beehive object in more then one coloum which I dont understand why ?
Can offer advice as to where in specifically I should look in my code to fix this error ?
1