Guest User

Untitled

a guest
Oct 22nd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. while result == 0:
  2. move_states = {move: apply_move(current_board_state, move, current_side)
  3. for move in available_moves(current_board_state)}
  4. if not move_states:
  5. result = 0
  6. break
Add Comment
Please, Sign In to add comment