summaryrefslogtreecommitdiffstats
path: root/binary_tree_demo.py
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-07-23 01:14:27 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2016-07-23 01:14:27 +0200
commite1ed22231d955eedf3895adf72fd3fbbeb133376 (patch)
tree7741d2c4cfa2eac191def2a272b1cfa7dad57d95 /binary_tree_demo.py
downloadmaze-e1ed22231d955eedf3895adf72fd3fbbeb133376.tar.xz
Initial commit
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'binary_tree_demo.py')
-rw-r--r--binary_tree_demo.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/binary_tree_demo.py b/binary_tree_demo.py
new file mode 100644
index 0000000..ca1d363
--- /dev/null
+++ b/binary_tree_demo.py
@@ -0,0 +1,7 @@
+from grid import Grid
+from binary_tree import BinaryTree
+
+grid = Grid(4, 4)
+BinaryTree.on(grid)
+
+print(grid)