fully implemented chance tree AI

This commit is contained in:
Clemens Dautermann 2019-12-07 22:57:23 +01:00
parent cdf6df64a4
commit 616f3a8db5
3 changed files with 986467 additions and 4 deletions

View file

@ -0,0 +1,12 @@
from .main import Board
end = False
board = [0, 0, 0,
0, 0, 0,
0, 0, 0]
b = Board(barray=board)
while not end:
n = int(input('Enter field: '))
b.board[n] = -1
b.refresh()
print(b)