Newer
Older
maze / src / main / MazeMain.java
@soloclouddeveloper soloclouddeveloper on 6 Feb 451 bytes Print row x col ASCII grid
import net.curtlewis.maze.algorithm.BinaryTree;
import net.curtlewis.maze.grid.Cell;
import net.curtlewis.maze.grid.Grid;

public class MazeMain {

    public static void main(String[] args) throws Exception {
        System.out.println("MazeMain...");
        Cell cell = new Cell(1, 2);
        System.out.println(cell);

        Grid grid = new Grid(10, 10);
        System.out.println(grid);
        BinaryTree bt = new BinaryTree(grid);
    }

}