I have the following method:
private boolean checkVictory (char player)
{
boolean victory = false; // by default no victory
for (int i = 0; i < _board[0].length; i++)
{
Cell c = new Cell(i, getLastOccupiedCells()[i].getRow());
if (maxSequence(player, c) == 4)
victory = true;
}
return victory;
}
This method is a part of a 'four in a row' game. maxSequence(player, c) should return the longest sequence who contains the cell 'c' and the sign 'player' (means 'X' or 'O').
Just wonder for the meaning of the #4 at line: if (maxSequence(player, c) == 4)
thnx !
if (maxSequence(player, c) >= 4)since in theory, you could get a sequence of 7 cells if you have 2 sequences of 3 and connect them. – Thomas May 7 '11 at 6:41