Update: The original assignment description wasn’t as clear as it could’ve been. Some clarifications:
-
The row and column in the
(row, column)
tuples are integers in the range [0,7] (inclusive). -
The starting positions for checkers are:
- Dark
-
(0, 1), (0, 3), (0, 5), (0, 7)
(1, 0), (1, 2), (1, 4), (1, 6)
(2, 1), (2, 3), (2, 5), (2, 7) - Light
-
(5, 0), (5, 2), (5, 4), (5, 6)
(6, 1), (6, 3), (6, 5), (6, 7)
(7, 0), (7, 2), (7, 4), (7, 6)