We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The game of bones solver script is:
tt = TT() GameOfBones.ttentry = lambda game : game.pile # key for the table r,d,m = id_solve(GameOfBones, range(2,20), win_score=100, tt=tt)
What is the equivalent for python? Do I just change range to range(2, 42) and game.pile to game.board?
range(2, 42)
game.pile
game.board
Do you have an estimate for how long it will take?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The game of bones solver script is:
What is the equivalent for python? Do I just change range to
range(2, 42)
andgame.pile
togame.board
?Do you have an estimate for how long it will take?
The text was updated successfully, but these errors were encountered: