This day was pretty easy, though I made a stupid mistake and took too long. Also started way late. But only 13 lines total for part 2

This commit is contained in:
Connor Johnstone
2023-12-19 00:05:37 -07:00
parent 157d1f01b0
commit 09bc5908e1
7 changed files with 965 additions and 0 deletions

5
day_18/main.py Normal file
View File

@@ -0,0 +1,5 @@
import part1 as p1
import part2 as p2
# print(p1.run())
print(p2.run())