Skip to content

Instantly share code, notes, and snippets.

View mAlaliSy's full-sized avatar

Mohammad AL-Ali mAlaliSy

View GitHub Profile
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.Scanner;
public class XOGame {
private static final int DEPTH = 9;
private static int[] iStart = {0, 1, 2, 0, 0, 0, 0, 0};
private static int[] jStart = {0, 0, 0, 0, 1, 2, 0, 2};