- compareBoards(ConnectN...) - Static method in class ConnectN
-
Compare any number of ConnectN boards.
- compareBoards(ConnectN, ConnectN) - Static method in class ConnectN
-
Compare two ConnectN boards.
- ConnectN - Class in <Unnamed>
-
A class that implements a Connect4-like game.
- ConnectN() - Constructor for class ConnectN
-
Create a new ConnectN board with uninitialized width, height, and N value.
- ConnectN(int, int) - Constructor for class ConnectN
-
Create a new ConnectN board with given width and height and uninitialized N value.
- ConnectN(int, int, int) - Constructor for class ConnectN
-
Creates a new ConnectN board with a given width, height, and N value.
- ConnectN(ConnectN) - Constructor for class ConnectN
-
Create a new ConnectN board with dimensions and N value copied from another board.
- create(int, int, int) - Static method in class ConnectN
-
Class method to create a new ConnectN board.
- createMany(int, int, int, int) - Static method in class ConnectN
-
Creates multiple new ConnectN instances.