Skip to content

Commit

Permalink
Fixed inverted axis
Browse files Browse the repository at this point in the history
  • Loading branch information
ErminaTrontzou committed May 7, 2023
1 parent d6b82e0 commit 50aaba0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class Grid {


public Grid(int gridSizeX, int gridSizeY) {
grid = new String[gridSizeX][gridSizeY];
grid = new String[gridSizeY][gridSizeX];
for (String[] row : grid) {
Arrays.fill(row, "E");
}
Expand Down

0 comments on commit 50aaba0

Please sign in to comment.