Java

TOPIC 08 – SUDOKU HELP I

 

LESSON WORK

 

 

GAME OUTLINE (PSEUDOCODE)

 

Here is a proposed outline for the game.

 

   Create 2D array.
   Display empty board.

 

   Loop until game is done

        Get move from user

        Update board

        Display board

        Check if board is legal.  Display message if necessary.

        Check if game is done

   End loop