summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--14.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/14.py b/14.py
index f74e30b..76c45ed 100644
--- a/14.py
+++ b/14.py
@@ -1,7 +1,6 @@
from utils import open_day, sliding_window
from enum import Enum, auto
from itertools import count
-import cProfile
def display(sandbox, minx, miny, maxx, maxy):
for y in range(miny, maxy + 1):
@@ -91,5 +90,4 @@ height = floory - sandbox.source[1]
for x in range(500 - height, 500 + height + 1):
sandbox[x, floory] = Tile.WALL
-# cProfile.run('sandbox.simulate()')
print(p1 + sandbox.simulate())