[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: [QUIZ] Learning Tic-Tac-Toe (#11

Mohammad Khan

12/10/2004 9:34:00 PM

On Fri, 2004-12-10 at 09:29, Ruby Quiz wrote:
> The three rules of Ruby Quiz:
>
> 1. Please do not post any solutions or spoiler discussion for this quiz until
> 48 hours have passed from the time on this message.
>
> 2. Support Ruby Quiz by submitting ideas as often as you can:
>
> http://www.grayproductions.net/...
>
> 3. Enjoy!
>
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>
> This week's Ruby Quiz is to implement an AI for playing Tic-Tac-Toe, with a
> catch: You're not allowed to embed any knowledge of the game into your creation
> beyond how to make legal moves and recognizing that it has won or lost.
>
> Your program is expected to "learn" from the games it plays, until it masters
> the game and can play flawlessly.
>
> Submissions can have any interface, but should be able to play against humans
> interactively. However, I also suggest making it easy to play against another
> AI, so you can "teach" the program faster.
>
> Being able to monitor the learning progression and know when a program has
> mastered the game would be very interesting, if you can manage it.

Board size = N x N ( N >= 3 )
Am I right?


Thanks,
Mohammad




1 Answer

James Gray

12/10/2004 9:37:00 PM

0

On Dec 10, 2004, at 3:33 PM, Mohammad Khan wrote:

> Board size = N x N ( N >= 3 )
> Am I right?

I'm using a standard Tic-Tac-Toe board, which is 3 x 3.

James Edward Gray II