public class Ai2048 { static void playLeft(TwoThousandFourtyEight board) { while (board.left()) { // loop until the board is full! } } static void playRandom(TwoThousandFourtyEight board) { } static void playAI(TwoThousandFourtyEight board) { } }