mirror of
https://github.com/thib8956/advent-of-code.git
synced 2025-08-23 16:01:59 +00:00
chore: create new project structure and aoc.py runner script
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
ran day1/day1.py in 0.016s
|
||||
ran day2/day2.py in 0.021s
|
||||
ran day3/day3.py in 0.017s
|
||||
ran day4/day4.py in 0.039s
|
||||
ran day5/day5.py in 0.191s
|
||||
ran day6/day6.py in 9.655s
|
||||
ran day7/day7.py in 2.227s
|
||||
ran day8/day8.py in 0.017s
|
||||
ran day9/day9.py in 11.159s
|
||||
ran day10/day10.py in 0.052s
|
||||
ran day11/day11.py in 0.116s
|
||||
ran day12/day12.py in 0.170s
|
||||
ran day13/day13.py in 0.014s
|
||||
ran day14/day14.py in 3.729s
|
||||
ran day16/day16.py in 10.082s
|
||||
ran day18/day18.py in 0.872s
|
||||
|
26
Makefile
Normal file
26
Makefile
Normal file
@@ -0,0 +1,26 @@
|
||||
.PHONY: all venv install clean
|
||||
|
||||
# Define the virtual environment directory
|
||||
VENV_DIR = ./venv
|
||||
|
||||
# Define the Python interpreter to use
|
||||
PYTHON = $(VENV_DIR)/bin/python
|
||||
|
||||
# Default target
|
||||
all: venv install
|
||||
|
||||
# Create virtual environment if it doesn't exist
|
||||
venv:
|
||||
@echo "Creating virtual environment..."
|
||||
@if [ ! -d $(VENV_DIR) ]; then \
|
||||
python3 -m venv $(VENV_DIR); \
|
||||
fi
|
||||
|
||||
install: venv
|
||||
@$(PYTHON) -m pip install --upgrade pip
|
||||
@$(PYTHON) -m pip install -e .
|
||||
|
||||
clean:
|
||||
@echo "Removing virtual environment..."
|
||||
@rm -rf $(VENV_DIR)
|
||||
|
14
README.md
14
README.md
@@ -4,15 +4,25 @@ My solutions to the [advent of code](https://adventofcode.com/) challenges, writ
|
||||
|
||||
## How to run
|
||||
|
||||
### Install project
|
||||
|
||||
Run `make install` or
|
||||
|
||||
Run from root directory (inside a virtualenv):
|
||||
|
||||
```shell
|
||||
$ pip install -e .
|
||||
```
|
||||
|
||||
### Run a single day
|
||||
|
||||
```shell
|
||||
$ python3 run.py <year> <day>
|
||||
$ aoc <year> <day>
|
||||
```
|
||||
|
||||
### Run a whole year
|
||||
|
||||
```shell
|
||||
$ python3 run.py <year>
|
||||
$ aoc <year>
|
||||
```
|
||||
|
||||
|
0
adventofcode/2019/__init__.py
Normal file
0
adventofcode/2019/__init__.py
Normal file
0
adventofcode/2019/day13/__init__.py
Normal file
0
adventofcode/2019/day13/__init__.py
Normal file
@@ -1,14 +1,11 @@
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
# TODO replace PYTHONPATH hack with a proper solution, like making intcode an
|
||||
# installed module https://stackoverflow.com/a/50194143
|
||||
sys.path.append(str(Path(__file__).absolute().parent.parent / "intcode"))
|
||||
|
||||
from itertools import cycle, permutations
|
||||
from intcode import interpret_intcode, Interpreter
|
||||
|
||||
|
||||
def main(inp):
|
||||
mem = list(map(int, inp.readline().rstrip().split(",")))
|
||||
max_ret = 0
|
41
adventofcode/aoc.py
Normal file
41
adventofcode/aoc.py
Normal file
@@ -0,0 +1,41 @@
|
||||
import argparse
|
||||
from adventofcode.helper import run, get_input_file
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="Advent of Code CLI")
|
||||
subparsers = parser.add_subparsers(dest='command')
|
||||
|
||||
# Sous-commande init
|
||||
init_parser = subparsers.add_parser('init', help='Init an aoc day')
|
||||
init_parser.add_argument('year', type=int)
|
||||
init_parser.add_argument('day', type=int)
|
||||
|
||||
# Sous-commande run
|
||||
run_parser = subparsers.add_parser('run', help='Run an aoc day')
|
||||
run_parser.add_argument('year', type=int)
|
||||
run_parser.add_argument('day', type=int)
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
if args.command == 'init':
|
||||
handle_init(args.year, args.day)
|
||||
elif args.command == 'run':
|
||||
handle_run(args.year, args.day)
|
||||
else:
|
||||
parser.print_help()
|
||||
|
||||
|
||||
def handle_init(year, day):
|
||||
# TODO initialize directory if needed, download input file and create
|
||||
# dayX.py from a template
|
||||
raise NotImplementedError("init")
|
||||
|
||||
|
||||
def handle_run(year, day):
|
||||
run(year, day)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
@@ -1,3 +1,4 @@
|
||||
#!/usr/bin/env python3
|
||||
import urllib.request
|
||||
import getpass
|
||||
import sys
|
||||
@@ -6,6 +7,7 @@ import subprocess
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
ROOTPATH = Path(os.path.dirname(os.path.realpath(__file__)))
|
||||
|
||||
_auth = None
|
||||
|
||||
@@ -27,9 +29,9 @@ def get_input_file(year, day):
|
||||
return res
|
||||
|
||||
|
||||
def main(year, day):
|
||||
def run(year, day):
|
||||
if day is not None:
|
||||
path = Path(f"{year}/day{day}")
|
||||
path = ROOTPATH / Path(f"{year}/day{day}")
|
||||
script_path = path / Path(f"day{day}.py")
|
||||
input_path = path / Path("input.txt")
|
||||
if not script_path.exists():
|
||||
@@ -45,7 +47,7 @@ def main(year, day):
|
||||
run_day(script_path, input_path)
|
||||
else:
|
||||
for day in range(1, 26):
|
||||
path = Path(f"{year}/day{day}")
|
||||
path = ROOTPATH / Path(f"{year}/day{day}")
|
||||
script_path = path / Path(f"day{day}.py")
|
||||
input_path = path / Path("input.txt")
|
||||
if script_path.exists():
|
||||
@@ -69,12 +71,3 @@ def run_day(script_path, input_path):
|
||||
except subprocess.TimeoutExpired:
|
||||
print(f"> timeout {script_path} after 30s", file=sys.stderr)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if len(sys.argv) <= 1:
|
||||
print(f"Usage: {__file__} <year> [<day>]", file=sys.stderr)
|
||||
exit(1)
|
||||
year = sys.argv[1]
|
||||
day = sys.argv[2] if len(sys.argv) > 2 else None
|
||||
main(year, day)
|
||||
|
14
pyproject.toml
Normal file
14
pyproject.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[build-system]
|
||||
requires = ["setuptools"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "adventofcode"
|
||||
version = "1.0.0"
|
||||
|
||||
[project.scripts]
|
||||
aoc = "adventofcode.aoc:main"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["."]
|
||||
|
Reference in New Issue
Block a user