__init__.py 522 B

1234567891011
  1. """
  2. This library provides a Python implementation of the game Isolation.
  3. Isolation is a deterministic, two-player game of perfect information in
  4. which the players alternate turns moving between cells on a square grid
  5. (like a checkerboard). Whenever either player occupies a cell, that
  6. location is blocked for the rest of the game. The first player with no
  7. legal moves loses, and the opponent is declared the winner.
  8. """
  9. # Make the Board class available at the root of the module for imports
  10. from .isolation import Board