def GET(self, boardst): board = blobai.conv(boardst) if(all(board)): if(sum(board)>0): return "Computer" else: return "Player" #This means none of the other stuff happened return 0
def GET(self,board): return blobai.comMove(blobai.conv(board))