Added python3 shebangs

master
Tibor Bizjak 2023-03-20 08:50:40 +01:00
parent 75cfd22369
commit 4d0f594c03
6 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
from functools import total_ordering
from collections import defaultdict
from itertools import combinations

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
from intcode import preproc
def partI(exe):

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
from collections import defaultdict

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
from intcode import preproc
from lib import last

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
from functools import reduce
deal = lambda: (-1, -1)

View File

@ -1,3 +1,4 @@
#!/usr/bin/env python3
BUG = '#'
EMPTY = '.'