// Arup Guha
// 7/27/2010
// Dummy player written for ConnectFour scaffold.

import java.util.*;

public class Carol implements C4Contestant {
	
	public Carol() {}
	
	public int move(ConnectFour copy, long myTime) {
		
		Random r = new Random();
		
		// Pick a random column until we find a valid one.
		int move = r.nextInt(7);
		while (copy.not_valid(move))
			move = r.nextInt(7);
				
		// We should always get here since we're guaranteed that copy isn't full.
		return move;
	}
}