Skip to content

Commit 98ffc9b

Browse files
committed
2019 d14: removed unneded utils import
1 parent f82257f commit 98ffc9b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

2019/solutions/day14.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
from utils import advent
44
from math import ceil
5-
from collections import deque
6-
from utils import *
5+
from collections import deque, defaultdict
76

87
def needed_ore(recipes, fuel_qty):
98
queue = deque([(fuel_qty, 'FUEL')])

0 commit comments

Comments
 (0)