2D Arrays
I need to create the constructor -- public Puzzle(int[] numbers) -- to initialize puzzle (9x9 game card) from an array of integers assuming that the parameter array numbers will contain 81 integers between 0 and 9 inclusive. The constructor will have to fill the puzzle row by row.
How would such a constructor look?

