Driver.java 286 B

123456789
  1. public class Driver {
  2. public static void main (String[] args) {
  3. // Create the permutation tree with the number ``123456789''
  4. PermutationTree tree = new PermutationTree(123456789);
  5. // Print the resulting tree
  6. System.out.println(tree);
  7. }
  8. }