Change to use uv and pyproject.toml, as well as aocd lib for python

This commit is contained in:
2024-12-03 14:02:51 -04:00
parent 4af7ced4b5
commit 81ab553260
7 changed files with 119 additions and 4 deletions

View File

@ -1,7 +1,9 @@
from aocd import get_data
data = get_data(day=3, year=2024)
list1 = []
list2 = []
file = open("input.txt", "r").read()
lines = file.split("\n")
lines = data.split("\n")
for line in lines:
nums = line.split(" ")
num1 = int(nums[0])