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 functools import total_ordering
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from itertools import combinations
|
from itertools import combinations
|
||||||
|
|
2
day19.py
2
day19.py
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from intcode import preproc
|
from intcode import preproc
|
||||||
|
|
||||||
def partI(exe):
|
def partI(exe):
|
||||||
|
|
2
day20.py
2
day20.py
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
||||||
|
|
||||||
|
|
2
day21.py
2
day21.py
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from intcode import preproc
|
from intcode import preproc
|
||||||
from lib import last
|
from lib import last
|
||||||
|
|
||||||
|
|
2
day22.py
2
day22.py
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
|
|
||||||
deal = lambda: (-1, -1)
|
deal = lambda: (-1, -1)
|
||||||
|
|
Loading…
Reference in New Issue