Compare commits

..

5 Commits

Author SHA1 Message Date
Mikaël Capelle
155e0e9521 Final a bit better. 2023-12-12 21:18:57 +01:00
Mikael CAPELLE
13b15aba76 Final. 2023-12-12 19:03:40 +01:00
Mikael CAPELLE
c7d2eb2171 WIP 2. 2023-12-12 18:54:08 +01:00
Mikael CAPELLE
edc50cb9c2 WIP. 2023-12-12 14:49:16 +01:00
Mikaël Capelle
7151499835 2022 day 12. 2023-12-12 07:46:34 +01:00
332 changed files with 185 additions and 14277 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