chore: tooling
This commit is contained in:
parent
5700e7d1e1
commit
6081f917c0
|
@ -0,0 +1,2 @@
|
|||
python pypy3.10-7.3.12
|
||||
gleam 1.4.1
|
|
@ -4,7 +4,7 @@ cd "$(dirname $(realpath $0))"
|
|||
|
||||
. .env
|
||||
|
||||
d=$(date +%d)
|
||||
d=${1-$(date +%d)}
|
||||
e=$(bc <<< "$d + 0")
|
||||
|
||||
mkdir -p d${d}
|
||||
|
@ -19,4 +19,6 @@ cd d${d}
|
|||
-o input \
|
||||
"https://adventofcode.com/2024/day/$e/input"
|
||||
|
||||
cp ../starter.py part1.py
|
||||
|
||||
echo $(realpath .)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
numpy
|
|
@ -0,0 +1,23 @@
|
|||
import sys
|
||||
from grid import *
|
||||
from collections import defaultdict as DD
|
||||
from collections import Counter as CT
|
||||
from collections import deque as DQ
|
||||
from functools import cmp_to_key as ck
|
||||
from functools import cache
|
||||
from itertools import combinations as comb
|
||||
from itertools import product as prod
|
||||
from itertools import cycle
|
||||
E = enumerate
|
||||
|
||||
I = sys.stdin.read().strip().split('\n')
|
||||
#G = [list(l) for l in I.split('\n')]
|
||||
#W, H = grid_geom(G)
|
||||
|
||||
ans = 0
|
||||
|
||||
for i,x in E(I):
|
||||
print(i,x)
|
||||
|
||||
print(ans)
|
||||
|
Loading…
Reference in New Issue