Starting day 7
This commit is contained in:
parent
a883b4adad
commit
ff94e70daa
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
input
|
||||
test
|
13
2023/day7/part1.py
Normal file
13
2023/day7/part1.py
Normal file
@ -0,0 +1,13 @@
|
||||
#!/bin/python3
|
||||
|
||||
import re
|
||||
import sys
|
||||
from pprint import pprint
|
||||
input_f = sys.argv[1]
|
||||
|
||||
d =[]
|
||||
|
||||
with open(input_f) as file:
|
||||
for line in file:
|
||||
|
||||
pprint(d)
|
5
2023/day7/test
Normal file
5
2023/day7/test
Normal file
@ -0,0 +1,5 @@
|
||||
32T3K 765
|
||||
T55J5 684
|
||||
KK677 28
|
||||
KTJJT 220
|
||||
QQQJA 483
|
Loading…
Reference in New Issue
Block a user