由于某些原因,当内部四个循环运行时,此方法不会在外部For循环中添加1到col。我只能得到垂直连接4在列中,col被设置为。例如,如果col等于2,计算机只会识别列2中的垂直连接4。有什么问题吗?
public Player colWinner(){
for(int col = 0; col < grid[0].length; col++){
for(int row = 0; row < grid.length/2; row++){
Player currP = getCell(row,col);