University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. import java.io.File;
  2. class Sudoku {
  3. public static void main(String[] args) throws Exception {
  4. if (args.length < 1) {
  5. System.out.println("Usage: java Sudoku <file>");
  6. return;
  7. }
  8. Brett b = new Brett(new File(args[0]));
  9. b.print();
  10. }
  11. }