Support Forums

Full Version: How To Win In Tic-Tac-Toe
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
If you go first, this will work every time, If you don't go first, this will work most of the time.

Basically you want to make a triangle in 3 of the 4 corners like such:
Code:
_x_|___|_x_
___|___|___
x  |   |

Or:
Code:
_x_|___|_x_
___|___|___
   |   | x
Etc..

So now you have three(3) ways to win, and your opponent can only block 1!

This triangle method also works in other ways:

Code:
___|___|___
___|_x_|___
x  |   | x
Code:
___|___|___
___|_x_|___
x  | x |


Now hopefully your a little better at tic-tac-toe Thumbsup
Random thread is random.. but epic. Smile
That's great and all, unless the O blocks you from the beginning....
(11-21-2009, 01:55 AM)Grizzly Wrote: [ -> ]That's great and all, unless the O blocks you from the beginning....

LOL. I lol'd at that for no reason.
I'm on a roll. You're the third person I've gotten to lol @ something that wasn't meant to be funny. lulz
Old trick i use it everytime.
(11-21-2009, 01:55 AM)Grizzly Wrote: [ -> ]That's great and all, unless the O blocks you from the beginning....

1.
Code:
___|___|___
___|___|___
x  | o |

2.
Code:
_x_|___|___
___|___|___
x  | o |

Now, o has to go in the middle-left to block you

3.

Code:
_x_|___|___
_o_|___|___
x  | o |

4.

Code:
_x_|___|_x_
_o_|___|___
x  | o |

Now o has to choose one spot to bock you

5.

Code:
_x_|_o_|_x_
_o_|___|___
x  | o |

6.

Code:
_x_|_o_|_x_
_o_|_x_|___
x  | o |
You win!
Code:
___|___|___
___|_o_|___
x   |     |
Code:
_x_|___|___
___|_o_|___
x   |     |
Code:
_x_|___|___
_o_|_o_|___
x   |     |
Code:
_x_|___|___
_o_|_o_|_x_
x   |     |
Code:
_x_|_o_|___
_o_|_o_|_x_
x   |     |
Code:
_x_|_o_|___
_o_|_o_|_x_
x   |  x  |
Code:
_x_|_o_|___
_o_|_o_|_x_
x   |  x  | o


Like I said
(11-21-2009, 11:49 PM)Grizzly Wrote: [ -> ]Like I said

Code:
_|_|_
_|_|_
x|_|_
Code:
_|_|_
_|o|_
x|_|_
Code:
_|_|x
_|o|_
x|_|_
Code:
_|o|x
_|o|_
x|_|_
Code:
_|o|x
_|o|_
x|x|_
Code:
_|o|x
_|o|_
x|x|o

is a tie, but

Code:
_|_|_
_|_|_
x|_|_
Code:
_|_|_
_|o|_
x|_|_
Code:
_|_|x
_|o|_
x|_|_
Code:
o|_|x
_|o|_
x|_|_
Code:
o|_|x
_|o|_
x|_|x

So it depends on whether O places diagonally or not.
there was a game called nims or nimbles or something - it was pure cheating if u knew the rules Smile I mean if u are the only one who knows the rules according to your opponent you are unbeatable.. saw it on youtube on a podcast back in the day.. I just remembered it when I saw that tic-tac-toe thingy
Pages: 1 2