Tagged Questions

3
votes
6answers
1k views

Need instructions for Reversi game

I am trying to write Reversi game in Python. Can anyone give me some basic ideas and strategy which are simple, good and easy to use? I would appreciate for any help because I've gone to a little far ...
1
vote
1answer
103 views

Othello Alpha-Beta Pruning playing badly python

I am currently trying to make a good AI for Othello, and have done so using the Minimax algorithm. However, when I tried to make a deeper search using alpha-beta pruning, it seemed like the algorithm ...
1
vote
2answers
147 views

creating a list of valid moves for the computer in reversi (python)

I'm relatively new to programming so please excuse the lack of elegant code here. The program has gotten a little convoluted but I'm at the point where I want to finish it and see the result. ...