/** Driver.java for the Knight's tour program. * The parameter to the puzzle constructor is the dimension * of the (square) chessboard. It turns out an 8x8 solution * will take too long! */ public class Driver { public static void main(String [] args) { Puzzle p = new Puzzle(6); p.solve(); System.out.println(p); } }