Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. public class FillingLabApp
  2. {
  3. public static void main(String[]a)
  4. {
  5. FillableSudoku mS = new FillableSudoku();
  6. System.out.println("First, show the board initially completely empty:");
  7. System.out.println(mS);
  8.  
  9. System.out.println("Second, show the board after calling rowNumPattern:");
  10. mS.rowNumPattern();
  11. System.out.println(mS);
  12.  
  13. System.out.println("Third, show the board after calling colNumPattern:");
  14. mS.colNumPattern();
  15. System.out.println(mS);
  16.  
  17. System.out.println("Fourth, show the board after calling blockNumPattern:");
  18. mS.blockNumPattern();
  19. System.out.println(mS);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement