Compare commits

..

1 Commits

Author SHA1 Message Date
Mikael CAPELLE
40ab70271e 2023 day 17, v2. 2023-12-19 14:26:16 +01:00
311 changed files with 144 additions and 10489 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
venv
__pycache__

13
2021/day9.py Normal file
View File

@ -0,0 +1,13 @@
import sys
from collections import defaultdict
from dataclasses import dataclass
lines = sys.stdin.read().splitlines()
# part 1
answer_1 = ...
print(f"answer 1 is {answer_1}")
# part 2
answer_2 = ...
print(f"answer 2 is {answer_2}")

Some files were not shown because too many files have changed in this diff Show More