// Arup Guha
// 7/27/2010
// Dummy player written for ConnectFour scaffold.
public class Bob implements C4Contestant {
	
	public Bob() {}
	
	public int move(ConnectFour copy, long myTime) {
		
		// Find the first column that works.
		for (int i=0; i<ConnectFour.NUM_COLS; i++)
			if (!copy.not_valid(i))
				return i;
				
		// Should never get here, since move should never be called on a 
		// full board.
		return 0;
	}
}