I want to replicate the count down tic tac toe game. I have programmed a tic tac toe game with perfect AI, which is very simple. But I can't seem to find the best/undefeatable tactic. I tried to modified the tic tac toe AI but it seems the tactics does not suit very well and I seem to have a way to beat it. ( with luck ?).

Anyone know the best strategy to deal with this? For human or for my AI?

For anyone who have no idea what count down tic tac toe is, its a game of tic tac toe except the player can only place 3 piece -- meaning that the oldest piece will disappear. i.e. when the player place the forth piece the 1st one will disappear. Here is the example game: http://itunes.apple.com/us/app/tic-tac-toe-count-down/id348792842?mt=8

link|improve this question
You have seen xkcd.com/832? Should work for the count-down version too. – Joachim Pileborg Dec 8 '11 at 9:14
I think one should be able to place 4 pieces and the oldest would disappear before the opponents move, otherwise the game would be rather pointless (you just complete a row or block an opponent's row - you might need to take into account which mark is going to evaporate before opponent's move). - Interesting problem. – visitor Dec 8 '11 at 11:11
@ Joachim Pileborg I don't think so, I have tried it on the app, lost the game :(. – airborneSTD Dec 8 '11 at 11:23
@visitor, I was aiming on these prorities 1) If there is a Win, do so 2) If opponent will win, block so 3) Try putting 2 pieces on the same row/column as enemy's piece, where counter = 1, as it will disappear next turn and win so 4) Try putting 2 pieces on the same row/column as enemy's piece, where counter = 2 5) random placement??? Still thinking about point 3 - 5, I also find out that in some cases if you put the wrong place in your first 2 move can already make you lose for sure. But I still don't really understand the rules behind it. – airborneSTD Dec 8 '11 at 11:24
So 3)-4) is what makes this game interesting. You also need to avoid the opponent doing the same to you. - You might try implementing the minimax algorithm for this. (en.wikipedia.org/wiki/Minimax) – UncleBens Dec 8 '11 at 13:25
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.