From: Hans Fugal Date: 2004-12-14T02:57:22+09:00 Subject: Re: [QUIZ] Learning Tic-Tac-Toe (#11) Brian Schr�der wrote: > On Mon, 13 Dec 2004 02:05:27 +0900 > James Edward Gray II wrote: > > >>On Dec 12, 2004, at 4:12 AM, Brian Schr�der wrote: >> >> >>>I thought, row major would mean, that you have each row after another. >> >>Row major means the row comes first. So you would handle addressing >>with something like: >> >>board[y][x] ...or... board[row][column] >> >>Hope that helps. >> >>James Edward Gray II >> > > > > Then I'm implementing row major, while the original server that claimed to > support row major in reality used column major. Well, unless I've unwittingly fixed a bug in the meantime, it _is_ using row-major. fugal.net Tic-Tac-Toe server X 3x3 hello ___ ___ ___ move 2,0 ___ ___ X__ _O_ ___ X__ move 0,1 move 0,0 XO_ ___ X__ XOO ___ X__ move 0,2 move 1,0 XOO X__ X__ win > This should be no flame or anything, I just want to get the specification > right, and hope that all can interface with the same server. Right, I'm still confused too.