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,5 +1,6 @@
file = open("input.txt", "r").read()
lines = file.split("\n")
from aocd import get_data
data = get_data(day=2, year=2024)
lines = data.split("\n")
reports = []
for line in lines:
nums = line.split(" ")