checkerBoard
This problem checks your ability to create 2D arrays of objects based on a provided class.
A game of Checkers is played on an 8x8 board.
Return a 2D array of Tile
objects representing the 8x8 board.
For this problem, you do not need to worry about the colors of the Tile
objects yet.
The Tile
class shown is included in the testing and does NOT need to be implemented. Similar to the AP Exam, if you are given a class you need to use it as-is.
public class Tile{
public Tile(){}
}
Type your solution
Skills Practiced:
3.A
3.C
3.E
4.A
4.B
Saved
Saved