Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

  1. Replies
    5
    Views
    1,558

    Re: Need help with Game of Life generations

    That means that program is using an index that is past the end of the array.
    Remember that array indexes go from 0 to the array length-1
    Make sure the index's value never goes past the array's...
  2. Replies
    5
    Views
    1,558

    Re: Need help with Game of Life generations

    Use the items on the current board to set the items on the next board.
  3. Replies
    5
    Views
    1,558

    Re: Need help with Game of Life generations

    Use the rules of the game to change the contents of a slot depending on what neighbors it has.
    Perhaps you need two boards: current and next. Use the current board to set the xs in the next board. ...
Results 1 to 3 of 3