Starting day 7

This commit is contained in:
FrederikBaerentsen 2023-12-07 14:30:20 +01:00
parent a883b4adad
commit ff94e70daa
3 changed files with 20 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
input
test

13
2023/day7/part1.py Normal file
View 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
View File

@ -0,0 +1,5 @@
32T3K 765
T55J5 684
KK677 28
KTJJT 220
QQQJA 483