Newer
Older
maze / src / main / MazeMain.java
@soloclouddeveloper soloclouddeveloper on 7 Feb 420 bytes binary tree algo working.
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 {
        Cell cell = new Cell(1, 2);

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

}