/**
   * Initializes the mazes appropriately, then calls the printing/solving function afterwards
   *
   * @param args -- nothing
   * @return -- nothing
   */
  public static void main(String[] args) {

    easyMaze.initializeMazes(easyMaze, medMaze, toughMaze);

    Nodes brutalNodeMaze[][] =
        brutalMaze.convertMaze(
            brutalMaze.theMaze, brutalMaze.theMaze.length, brutalMaze.theMaze[0].length);
    brutalMaze.nodeMaze = brutalNodeMaze;

    printMazes(easyMaze);
  }