summaryrefslogtreecommitdiffstats
path: root/19/py/d03.py
diff options
context:
space:
mode:
Diffstat (limited to '19/py/d03.py')
-rw-r--r--19/py/d03.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/19/py/d03.py b/19/py/d03.py
index 70bf9f0..b1fa9d8 100644
--- a/19/py/d03.py
+++ b/19/py/d03.py
@@ -1,4 +1,3 @@
-from profilehooks import coverage
import math
def intersection(l1, l2):
@@ -9,7 +8,6 @@ def intersection(l1, l2):
def man_dist(point):
return abs(point[0]) + abs(point[1])
-#@coverage
def pt1(input):
wire1 = []
wire2 = []
@@ -41,7 +39,6 @@ def pt1(input):
dist = min(dist, man_dist(point))
return dist
-#@coverage
def pt2(input):
wire1 = {}
wire2 = {}