Search:

Type: Posts; User: GoodbyeWorld

Search: Search took 0.08 seconds.

  1. Re: Problem in my 2-Dimensional Array Board Game

    Well, there's also

    while(currentRow ==0)

    and it seems to be only putting an x in row 0.
  2. Re: Problem in my 2-Dimensional Array Board Game

    return findPath(currentRow--, currentColumn)
    + findPath(currentRow++, currentColumn)
    + findPath(currentRow, currentColumn--)
    + findPath(currentRow, currentColumn++);

    You know,...
Results 1 to 2 of 2