public class MrArrr extends Strategy
{

	public int initial_turn(){
		// Picks a number based on participants, and randomizes slightly.
		return (int) Math.sqrt(opponents) + (int) Math.floor(Math.random()*3-1);
	}

	public int turn(int last_turns[], int scores[],
                             int carryOver, int turn_no){
		// Creates the Evaluator object, and instantiates it with the previous turn.
		Evaluator eval = new Evaluator(carryOver + stepBonus, last_turns);
		// Takes the bestBet from Evaluator and adds 0-2, usually 1 or 2.
		return eval.bestBet(maxPlayableNumber) + (int) Math.ceil(Math.random()*2);
	}
}
