Compare commits
5 Commits
master
...
2023/day12
Author | SHA1 | Date | |
---|---|---|---|
|
155e0e9521 | ||
|
13b15aba76 | ||
|
c7d2eb2171 | ||
|
edc50cb9c2 | ||
|
7151499835 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
||||
venv
|
||||
__pycache__
|
||||
|
13
2021/day9.py
Normal file
13
2021/day9.py
Normal 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
Loading…
Reference in New Issue
Block a user