Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
9answers
1k views

Code Golf: Reversi

OK, here's a rather elaborate code golf challenge: Implement a game of Reversi (Othello). The game should display the current state of the game-board and allow players at a single computer to ...
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 ...
2
votes
2answers
196 views

Creating a playing piece for Reversi GUI using Java Swing

ive created a basic GUI for Reversi using JPanels to represent the board in a GridLayout. At the moment when a piece is played the square that is clicked changes colour. Ive been trying to get a ...
2
votes
2answers
278 views

How do you make Tree Data Structures in C++?

I'm taking a class in AI Methods along with a friend of mine, and we've partenered for the final project, which is coding Othello & an AI for it using C++ and OpenGL. So far we have the board and ...
1
vote
1answer
50 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
1answer
40 views

pathfinding search crash if distance is longer than 2

The assignment is to create a game of reversi. I have it working except for moves that involve changing more than one chip x o o o o o o @ <-- the @ is x's move ...
1
vote
2answers
122 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. ...