Exemplo n.º 1
0
    def estimate(self, board_to_evaluate: dict[str, str]) -> list:
        _board_to_evaluate = Board()
        _board_to_evaluate.board = board_to_evaluate

        # If it's the first play of the game
        if self.number_of_turns_by_player(board_to_evaluate) == (0, 0):
            return Guesstimator.best_agressive_plays
        return []