Added python3 shebangs
parent
75cfd22369
commit
4d0f594c03
2
day18.py
2
day18.py
|
@ -1,3 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from functools import total_ordering
|
||||
from collections import defaultdict
|
||||
from itertools import combinations
|
||||
|
|
2
day19.py
2
day19.py
|
@ -1,3 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from intcode import preproc
|
||||
|
||||
def partI(exe):
|
||||
|
|
2
day21.py
2
day21.py
|
@ -1,3 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from intcode import preproc
|
||||
from lib import last
|
||||
|
||||
|
|
2
day22.py
2
day22.py
|
@ -1,3 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from functools import reduce
|
||||
|
||||
deal = lambda: (-1, -1)
|
||||
|
|
Loading…
Reference in New Issue