├── .github └── workflows │ └── main.yml ├── .gitignore ├── .ocamlformat ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── advent_of_code.opam ├── aoc ├── day-01 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── eriadrim.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── jon.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── sfluor.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.js │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── eriadrim.go │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.c │ ├── lelithium.zig │ ├── sfluor.go │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.java └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── eriadrim.go │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.c │ ├── lelithium.zig │ ├── sfluor.go │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.java ├── day-02 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── eriadrim.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── jon.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── sfluor.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── eriadrim.go │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.go │ ├── julesdt.py │ ├── lelithium.c │ ├── lelithium.zig │ ├── sfluor.go │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.c └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── eriadrim.go │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.go │ ├── julesdt.py │ ├── lelithium.c │ ├── lelithium.zig │ ├── sfluor.go │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.c ├── day-03 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── eriadrim.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── jon.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── sfluor.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── eriadrim.go │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.rb │ ├── lelithium.zig │ ├── sfluor.go │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.go └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── eriadrim.go │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.rb │ ├── lelithium.zig │ ├── sfluor.go │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.go ├── day-04 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── jon.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ └── troisdiz.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ └── troisdiz.go └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ └── troisdiz.go ├── day-05 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── jon.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── jon.sh │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── jon.sh │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-06 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── jon.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-07 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.js │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.py │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.js │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.py │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-08 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── giltho.txt │ ├── jd.txt │ ├── jon.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── giltho.ml │ ├── jd.rs │ ├── jon.py │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-09 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── claussa.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── claussa.go │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-10 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── julesdt.txt │ ├── lelithium.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── silvestre.py │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── julesdt.py │ ├── lelithium.zig │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-11 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.deno.js │ ├── ayc0.js │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-12 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-13 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── jd.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.go │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.nim │ ├── ayoub.go │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── jd.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-14 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── david.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.js │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── david.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-15 ├── input │ ├── ayc0.txt │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── giltho.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.c │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayc0.nim │ ├── ayoub.cpp │ ├── badouralix.c │ ├── bebert.pyx │ ├── coco.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── giltho.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.c │ ├── troisdiz.go │ └── youyoun.py ├── day-16 ├── input │ ├── ayoub.txt │ ├── badouralix.txt │ ├── coco.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayoub.cpp │ ├── badouralix.py │ ├── coco.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.rs │ ├── silvestre.jl │ ├── silvestre_cpp.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayoub.cpp │ ├── badouralix.py │ ├── coco.py │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── troisdiz.go │ └── youyoun.py ├── day-17 ├── input │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── djou.txt │ ├── enizor.txt │ ├── giltho.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ ├── thore.txt │ ├── troisdiz.txt │ └── youyoun.txt ├── part-1 │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── djou.go │ ├── enizor.rs │ ├── giltho.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── thore2.py │ ├── troisdiz.go │ └── youyoun.py └── part-2 │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── coco.py │ ├── djou.go │ ├── enizor.rs │ ├── giltho.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ ├── thore2.py │ ├── troisdiz.go │ └── youyoun.py ├── day-18 ├── input │ ├── ayoub.txt │ ├── badouralix.txt │ ├── bebert.txt │ ├── djou.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt ├── part-1 │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ └── thore2.py └── part-2 │ ├── ayoub.cpp │ ├── badouralix.py │ ├── bebert.pyx │ ├── djou.go │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.ml │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.py │ └── thore2.py ├── day-19 ├── input │ ├── badouralix.txt │ ├── bebert.txt │ ├── coco.txt │ ├── enizor.txt │ ├── evqna.txt │ ├── giltho.txt │ ├── silvestre.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt ├── part-1 │ ├── badouralix.py │ ├── bebert.py │ ├── coco.py │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py └── part-2 │ ├── badouralix.py │ ├── bebert.py │ ├── coco.py │ ├── enizor.rs │ ├── evqna.py │ ├── giltho.rs │ ├── silvestre.jl │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py ├── day-20 ├── input │ ├── badouralix.txt │ ├── enizor.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt ├── part-1 │ ├── badouralix.py │ ├── enizor.rs │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py └── part-2 │ ├── badouralix.py │ ├── enizor.rs │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py ├── day-21 ├── input │ ├── badouralix.txt │ ├── coco.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt ├── part-1 │ ├── badouralix.py │ ├── coco.py │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py └── part-2 │ ├── badouralix.py │ ├── coco.py │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py ├── day-22 ├── input │ ├── badouralix.txt │ ├── coco.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt ├── part-1 │ ├── badouralix.py │ ├── coco.py │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py └── part-2 │ ├── badouralix.py │ ├── coco.py │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py ├── day-23 ├── input │ ├── badouralix.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt ├── part-1 │ ├── badouralix.go │ ├── skasch.cpp │ ├── th-ch.py │ ├── thore.c │ └── thore.py └── part-2 │ ├── badouralix.go │ ├── skasch.cpp │ ├── th-ch.go │ ├── thore.c │ └── thore.py ├── day-24 ├── input │ ├── badouralix.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt ├── part-1 │ ├── badouralix.py │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py └── part-2 │ ├── badouralix.py │ ├── skasch.cpp │ ├── th-ch.py │ └── thore.py ├── day-25 ├── input │ ├── badouralix.txt │ ├── skasch.txt │ ├── th-ch.txt │ └── thore.txt └── part-1 │ ├── badouralix.py │ ├── skasch.cpp │ ├── th-ch.go │ └── thore.py ├── dune-project ├── esy.json ├── esy.lock ├── .gitattributes ├── .gitignore ├── index.json ├── opam │ ├── angstrom.0.15.0 │ │ └── opam │ ├── astring.0.8.5 │ │ └── opam │ ├── base-threads.base │ │ └── opam │ ├── base-unix.base │ │ └── opam │ ├── base.v0.14.0 │ │ └── opam │ ├── bigarray-compat.1.0.0 │ │ └── opam │ ├── bigstringaf.0.7.0 │ │ └── opam │ ├── biniou.1.2.1 │ │ └── opam │ ├── cmdliner.1.0.4 │ │ └── opam │ ├── conf-m4.1 │ │ └── opam │ ├── conf-pkg-config.1.3 │ │ └── opam │ ├── cppo.1.6.6 │ │ └── opam │ ├── csexp.1.3.2 │ │ └── opam │ ├── dot-merlin-reader.3.4.2 │ │ └── opam │ ├── dune-build-info.2.7.1 │ │ └── opam │ ├── dune-configurator.2.7.1 │ │ └── opam │ ├── dune.2.7.1 │ │ └── opam │ ├── easy-format.1.3.2 │ │ └── opam │ ├── fix.20201120 │ │ └── opam │ ├── fmt.0.8.9 │ │ └── opam │ ├── fpath.0.7.3 │ │ └── opam │ ├── menhir.20201201 │ │ └── opam │ ├── menhirLib.20201201 │ │ └── opam │ ├── menhirSdk.20201201 │ │ └── opam │ ├── ocaml-compiler-libs.v0.12.3 │ │ └── opam │ ├── ocaml-lsp-server.1.3.0 │ │ └── opam │ ├── ocaml-migrate-parsetree.2.1.0 │ │ └── opam │ ├── ocaml-syntax-shims.1.0.0 │ │ └── opam │ ├── ocamlbuild.0.14.0 │ │ └── opam │ ├── ocamlfind.1.8.1 │ │ ├── files │ │ │ ├── ocaml-stub │ │ │ └── ocamlfind.install │ │ └── opam │ ├── ocamlformat.0.15.1 │ │ └── opam │ ├── odoc.1.5.2 │ │ └── opam │ ├── ppx_derivers.1.2.1 │ │ └── opam │ ├── ppx_deriving.5.2 │ │ └── opam │ ├── ppx_yojson_conv_lib.v0.14.0 │ │ └── opam │ ├── ppxlib.0.20.0 │ │ └── opam │ ├── re.1.9.0 │ │ └── opam │ ├── result.1.5 │ │ └── opam │ ├── seq.base │ │ ├── files │ │ │ ├── META.seq │ │ │ └── seq.install │ │ └── opam │ ├── sexplib0.v0.14.0 │ │ └── opam │ ├── stdio.v0.14.0 │ │ └── opam │ ├── stdlib-shims.0.1.0 │ │ └── opam │ ├── topkg.1.0.3 │ │ └── opam │ ├── tyxml.4.4.0 │ │ └── opam │ ├── uchar.0.0.2 │ │ └── opam │ ├── uucp.13.0.0 │ │ └── opam │ ├── uuseg.13.0.0 │ │ └── opam │ ├── uutf.1.0.2 │ │ └── opam │ └── yojson.1.7.0 │ │ └── opam └── overrides │ ├── opam__s__conf_m4_opam__c__1_opam_override │ └── package.json │ ├── opam__s__conf_pkg_config_opam__c__1.3_opam_override │ └── package.json │ ├── opam__s__dune_opam__c__2.7.1_opam_override │ ├── files │ │ └── build.sh │ └── package.json │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ ├── files │ │ └── ocamlbuild-0.14.0.patch │ └── package.json │ └── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ ├── files │ └── findlib-1.8.1.patch │ └── package.json ├── package.json ├── requirements.txt ├── rust-toolchain ├── setup.cfg ├── tool ├── AOC.py ├── __init__.py ├── config.py ├── create.py ├── discovery.py ├── distribution.py ├── model.py ├── parser.py ├── run.py ├── runners │ ├── __init__.py │ ├── bash.py │ ├── c.py │ ├── cpp.py │ ├── cython_aoc-setup.py │ ├── cython_aoc.py │ ├── deno.py │ ├── deno_ts.py │ ├── exceptions.py │ ├── go.py │ ├── intcode.py │ ├── java.py │ ├── julia.py │ ├── nim.py │ ├── node.py │ ├── ocaml.py │ ├── python.py │ ├── ruby.py │ ├── rust.py │ ├── ts.py │ ├── vlang.py │ ├── wrapper.py │ └── zig.py ├── templates │ ├── template.c │ ├── template.cpp │ ├── template.deno.js │ ├── template.deno.ts │ ├── template.go │ ├── template.intcode │ ├── template.java │ ├── template.jl │ ├── template.js │ ├── template.ml │ ├── template.nim │ ├── template.py │ ├── template.pyx │ ├── template.rb │ ├── template.rs │ ├── template.sh │ ├── template.ts │ ├── template.v │ └── template.zig └── utils │ └── __init__.py ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/README.md -------------------------------------------------------------------------------- /advent_of_code.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/advent_of_code.opam -------------------------------------------------------------------------------- /aoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/aoc -------------------------------------------------------------------------------- /day-01/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/ayc0.txt -------------------------------------------------------------------------------- /day-01/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/ayoub.txt -------------------------------------------------------------------------------- /day-01/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/bebert.txt -------------------------------------------------------------------------------- /day-01/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/claussa.txt -------------------------------------------------------------------------------- /day-01/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/coco.txt -------------------------------------------------------------------------------- /day-01/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/david.txt -------------------------------------------------------------------------------- /day-01/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/djou.txt -------------------------------------------------------------------------------- /day-01/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/enizor.txt -------------------------------------------------------------------------------- /day-01/input/eriadrim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/eriadrim.txt -------------------------------------------------------------------------------- /day-01/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/evqna.txt -------------------------------------------------------------------------------- /day-01/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/giltho.txt -------------------------------------------------------------------------------- /day-01/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/jd.txt -------------------------------------------------------------------------------- /day-01/input/jon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/jon.txt -------------------------------------------------------------------------------- /day-01/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/julesdt.txt -------------------------------------------------------------------------------- /day-01/input/sfluor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/sfluor.txt -------------------------------------------------------------------------------- /day-01/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/skasch.txt -------------------------------------------------------------------------------- /day-01/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/th-ch.txt -------------------------------------------------------------------------------- /day-01/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/thore.txt -------------------------------------------------------------------------------- /day-01/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/troisdiz.txt -------------------------------------------------------------------------------- /day-01/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/input/youyoun.txt -------------------------------------------------------------------------------- /day-01/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-01/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-01/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-01/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/claussa.go -------------------------------------------------------------------------------- /day-01/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/coco.py -------------------------------------------------------------------------------- /day-01/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/david.py -------------------------------------------------------------------------------- /day-01/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/djou.go -------------------------------------------------------------------------------- /day-01/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/enizor.rs -------------------------------------------------------------------------------- /day-01/part-1/eriadrim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/eriadrim.go -------------------------------------------------------------------------------- /day-01/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/evqna.py -------------------------------------------------------------------------------- /day-01/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/giltho.ml -------------------------------------------------------------------------------- /day-01/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/jd.rs -------------------------------------------------------------------------------- /day-01/part-1/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/jon.py -------------------------------------------------------------------------------- /day-01/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/julesdt.py -------------------------------------------------------------------------------- /day-01/part-1/lelithium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/lelithium.c -------------------------------------------------------------------------------- /day-01/part-1/sfluor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/sfluor.go -------------------------------------------------------------------------------- /day-01/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-01/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/th-ch.py -------------------------------------------------------------------------------- /day-01/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/thore.py -------------------------------------------------------------------------------- /day-01/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-01/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-01/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-01/part-2/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/bebert.pyx -------------------------------------------------------------------------------- /day-01/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/claussa.go -------------------------------------------------------------------------------- /day-01/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/coco.py -------------------------------------------------------------------------------- /day-01/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/david.py -------------------------------------------------------------------------------- /day-01/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/djou.go -------------------------------------------------------------------------------- /day-01/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/enizor.rs -------------------------------------------------------------------------------- /day-01/part-2/eriadrim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/eriadrim.go -------------------------------------------------------------------------------- /day-01/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/evqna.py -------------------------------------------------------------------------------- /day-01/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/giltho.ml -------------------------------------------------------------------------------- /day-01/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/jd.rs -------------------------------------------------------------------------------- /day-01/part-2/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/jon.py -------------------------------------------------------------------------------- /day-01/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/julesdt.py -------------------------------------------------------------------------------- /day-01/part-2/lelithium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/lelithium.c -------------------------------------------------------------------------------- /day-01/part-2/sfluor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/sfluor.go -------------------------------------------------------------------------------- /day-01/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-01/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/th-ch.py -------------------------------------------------------------------------------- /day-01/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/thore.py -------------------------------------------------------------------------------- /day-01/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-01/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-02/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/ayc0.txt -------------------------------------------------------------------------------- /day-02/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/ayoub.txt -------------------------------------------------------------------------------- /day-02/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/bebert.txt -------------------------------------------------------------------------------- /day-02/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/claussa.txt -------------------------------------------------------------------------------- /day-02/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/coco.txt -------------------------------------------------------------------------------- /day-02/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/david.txt -------------------------------------------------------------------------------- /day-02/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/djou.txt -------------------------------------------------------------------------------- /day-02/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/enizor.txt -------------------------------------------------------------------------------- /day-02/input/eriadrim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/eriadrim.txt -------------------------------------------------------------------------------- /day-02/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/evqna.txt -------------------------------------------------------------------------------- /day-02/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/giltho.txt -------------------------------------------------------------------------------- /day-02/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/jd.txt -------------------------------------------------------------------------------- /day-02/input/jon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/jon.txt -------------------------------------------------------------------------------- /day-02/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/julesdt.txt -------------------------------------------------------------------------------- /day-02/input/sfluor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/sfluor.txt -------------------------------------------------------------------------------- /day-02/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/skasch.txt -------------------------------------------------------------------------------- /day-02/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/th-ch.txt -------------------------------------------------------------------------------- /day-02/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/thore.txt -------------------------------------------------------------------------------- /day-02/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/troisdiz.txt -------------------------------------------------------------------------------- /day-02/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/input/youyoun.txt -------------------------------------------------------------------------------- /day-02/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-02/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-02/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-02/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/claussa.go -------------------------------------------------------------------------------- /day-02/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/coco.py -------------------------------------------------------------------------------- /day-02/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/david.py -------------------------------------------------------------------------------- /day-02/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/djou.go -------------------------------------------------------------------------------- /day-02/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/enizor.rs -------------------------------------------------------------------------------- /day-02/part-1/eriadrim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/eriadrim.go -------------------------------------------------------------------------------- /day-02/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/evqna.py -------------------------------------------------------------------------------- /day-02/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/giltho.ml -------------------------------------------------------------------------------- /day-02/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/jd.rs -------------------------------------------------------------------------------- /day-02/part-1/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/jon.py -------------------------------------------------------------------------------- /day-02/part-1/julesdt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/julesdt.go -------------------------------------------------------------------------------- /day-02/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/julesdt.py -------------------------------------------------------------------------------- /day-02/part-1/lelithium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/lelithium.c -------------------------------------------------------------------------------- /day-02/part-1/sfluor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/sfluor.go -------------------------------------------------------------------------------- /day-02/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-02/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/th-ch.py -------------------------------------------------------------------------------- /day-02/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/thore.py -------------------------------------------------------------------------------- /day-02/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-02/part-1/youyoun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-1/youyoun.c -------------------------------------------------------------------------------- /day-02/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-02/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-02/part-2/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/bebert.pyx -------------------------------------------------------------------------------- /day-02/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/claussa.go -------------------------------------------------------------------------------- /day-02/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/coco.py -------------------------------------------------------------------------------- /day-02/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/david.py -------------------------------------------------------------------------------- /day-02/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/djou.go -------------------------------------------------------------------------------- /day-02/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/enizor.rs -------------------------------------------------------------------------------- /day-02/part-2/eriadrim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/eriadrim.go -------------------------------------------------------------------------------- /day-02/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/evqna.py -------------------------------------------------------------------------------- /day-02/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/giltho.ml -------------------------------------------------------------------------------- /day-02/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/jd.rs -------------------------------------------------------------------------------- /day-02/part-2/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/jon.py -------------------------------------------------------------------------------- /day-02/part-2/julesdt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/julesdt.go -------------------------------------------------------------------------------- /day-02/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/julesdt.py -------------------------------------------------------------------------------- /day-02/part-2/lelithium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/lelithium.c -------------------------------------------------------------------------------- /day-02/part-2/sfluor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/sfluor.go -------------------------------------------------------------------------------- /day-02/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-02/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/th-ch.py -------------------------------------------------------------------------------- /day-02/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/thore.py -------------------------------------------------------------------------------- /day-02/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-02/part-2/youyoun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-02/part-2/youyoun.c -------------------------------------------------------------------------------- /day-03/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/ayc0.txt -------------------------------------------------------------------------------- /day-03/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/ayoub.txt -------------------------------------------------------------------------------- /day-03/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/bebert.txt -------------------------------------------------------------------------------- /day-03/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/claussa.txt -------------------------------------------------------------------------------- /day-03/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/coco.txt -------------------------------------------------------------------------------- /day-03/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/david.txt -------------------------------------------------------------------------------- /day-03/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/djou.txt -------------------------------------------------------------------------------- /day-03/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/enizor.txt -------------------------------------------------------------------------------- /day-03/input/eriadrim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/eriadrim.txt -------------------------------------------------------------------------------- /day-03/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/evqna.txt -------------------------------------------------------------------------------- /day-03/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/giltho.txt -------------------------------------------------------------------------------- /day-03/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/jd.txt -------------------------------------------------------------------------------- /day-03/input/jon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/jon.txt -------------------------------------------------------------------------------- /day-03/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/julesdt.txt -------------------------------------------------------------------------------- /day-03/input/sfluor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/sfluor.txt -------------------------------------------------------------------------------- /day-03/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/skasch.txt -------------------------------------------------------------------------------- /day-03/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/th-ch.txt -------------------------------------------------------------------------------- /day-03/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/thore.txt -------------------------------------------------------------------------------- /day-03/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/troisdiz.txt -------------------------------------------------------------------------------- /day-03/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/input/youyoun.txt -------------------------------------------------------------------------------- /day-03/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-03/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-03/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-03/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/claussa.go -------------------------------------------------------------------------------- /day-03/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/coco.py -------------------------------------------------------------------------------- /day-03/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/david.py -------------------------------------------------------------------------------- /day-03/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/djou.go -------------------------------------------------------------------------------- /day-03/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/enizor.rs -------------------------------------------------------------------------------- /day-03/part-1/eriadrim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/eriadrim.go -------------------------------------------------------------------------------- /day-03/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/evqna.py -------------------------------------------------------------------------------- /day-03/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/giltho.ml -------------------------------------------------------------------------------- /day-03/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/jd.rs -------------------------------------------------------------------------------- /day-03/part-1/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/jon.py -------------------------------------------------------------------------------- /day-03/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/julesdt.py -------------------------------------------------------------------------------- /day-03/part-1/sfluor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/sfluor.go -------------------------------------------------------------------------------- /day-03/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-03/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/th-ch.py -------------------------------------------------------------------------------- /day-03/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/thore.py -------------------------------------------------------------------------------- /day-03/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-03/part-1/youyoun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-1/youyoun.go -------------------------------------------------------------------------------- /day-03/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-03/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-03/part-2/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/bebert.pyx -------------------------------------------------------------------------------- /day-03/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/claussa.go -------------------------------------------------------------------------------- /day-03/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/coco.py -------------------------------------------------------------------------------- /day-03/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/david.py -------------------------------------------------------------------------------- /day-03/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/djou.go -------------------------------------------------------------------------------- /day-03/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/enizor.rs -------------------------------------------------------------------------------- /day-03/part-2/eriadrim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/eriadrim.go -------------------------------------------------------------------------------- /day-03/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/evqna.py -------------------------------------------------------------------------------- /day-03/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/giltho.ml -------------------------------------------------------------------------------- /day-03/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/jd.rs -------------------------------------------------------------------------------- /day-03/part-2/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/jon.py -------------------------------------------------------------------------------- /day-03/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/julesdt.py -------------------------------------------------------------------------------- /day-03/part-2/sfluor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/sfluor.go -------------------------------------------------------------------------------- /day-03/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-03/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/th-ch.py -------------------------------------------------------------------------------- /day-03/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/thore.py -------------------------------------------------------------------------------- /day-03/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-03/part-2/youyoun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-03/part-2/youyoun.go -------------------------------------------------------------------------------- /day-04/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/ayc0.txt -------------------------------------------------------------------------------- /day-04/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/ayoub.txt -------------------------------------------------------------------------------- /day-04/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/bebert.txt -------------------------------------------------------------------------------- /day-04/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/claussa.txt -------------------------------------------------------------------------------- /day-04/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/coco.txt -------------------------------------------------------------------------------- /day-04/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/david.txt -------------------------------------------------------------------------------- /day-04/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/djou.txt -------------------------------------------------------------------------------- /day-04/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/enizor.txt -------------------------------------------------------------------------------- /day-04/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/evqna.txt -------------------------------------------------------------------------------- /day-04/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/giltho.txt -------------------------------------------------------------------------------- /day-04/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/jd.txt -------------------------------------------------------------------------------- /day-04/input/jon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/jon.txt -------------------------------------------------------------------------------- /day-04/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/julesdt.txt -------------------------------------------------------------------------------- /day-04/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/skasch.txt -------------------------------------------------------------------------------- /day-04/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/th-ch.txt -------------------------------------------------------------------------------- /day-04/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/thore.txt -------------------------------------------------------------------------------- /day-04/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/input/troisdiz.txt -------------------------------------------------------------------------------- /day-04/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-04/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-04/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-04/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/claussa.go -------------------------------------------------------------------------------- /day-04/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/coco.py -------------------------------------------------------------------------------- /day-04/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/david.py -------------------------------------------------------------------------------- /day-04/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/djou.go -------------------------------------------------------------------------------- /day-04/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/enizor.rs -------------------------------------------------------------------------------- /day-04/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/evqna.py -------------------------------------------------------------------------------- /day-04/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/giltho.ml -------------------------------------------------------------------------------- /day-04/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/jd.rs -------------------------------------------------------------------------------- /day-04/part-1/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/jon.py -------------------------------------------------------------------------------- /day-04/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/julesdt.py -------------------------------------------------------------------------------- /day-04/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-04/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/th-ch.py -------------------------------------------------------------------------------- /day-04/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/thore.py -------------------------------------------------------------------------------- /day-04/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-04/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-04/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-04/part-2/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/bebert.pyx -------------------------------------------------------------------------------- /day-04/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/claussa.go -------------------------------------------------------------------------------- /day-04/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/coco.py -------------------------------------------------------------------------------- /day-04/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/david.py -------------------------------------------------------------------------------- /day-04/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/djou.go -------------------------------------------------------------------------------- /day-04/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/enizor.rs -------------------------------------------------------------------------------- /day-04/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/evqna.py -------------------------------------------------------------------------------- /day-04/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/giltho.ml -------------------------------------------------------------------------------- /day-04/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/jd.rs -------------------------------------------------------------------------------- /day-04/part-2/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/jon.py -------------------------------------------------------------------------------- /day-04/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/julesdt.py -------------------------------------------------------------------------------- /day-04/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-04/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/th-ch.py -------------------------------------------------------------------------------- /day-04/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/thore.py -------------------------------------------------------------------------------- /day-04/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-04/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-05/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/ayc0.txt -------------------------------------------------------------------------------- /day-05/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/ayoub.txt -------------------------------------------------------------------------------- /day-05/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/bebert.txt -------------------------------------------------------------------------------- /day-05/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/claussa.txt -------------------------------------------------------------------------------- /day-05/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/david.txt -------------------------------------------------------------------------------- /day-05/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/djou.txt -------------------------------------------------------------------------------- /day-05/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/enizor.txt -------------------------------------------------------------------------------- /day-05/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/evqna.txt -------------------------------------------------------------------------------- /day-05/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/giltho.txt -------------------------------------------------------------------------------- /day-05/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/jd.txt -------------------------------------------------------------------------------- /day-05/input/jon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/jon.txt -------------------------------------------------------------------------------- /day-05/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/julesdt.txt -------------------------------------------------------------------------------- /day-05/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/skasch.txt -------------------------------------------------------------------------------- /day-05/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/th-ch.txt -------------------------------------------------------------------------------- /day-05/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/thore.txt -------------------------------------------------------------------------------- /day-05/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/troisdiz.txt -------------------------------------------------------------------------------- /day-05/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/input/youyoun.txt -------------------------------------------------------------------------------- /day-05/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-05/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-05/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-05/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/claussa.go -------------------------------------------------------------------------------- /day-05/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/david.py -------------------------------------------------------------------------------- /day-05/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/djou.go -------------------------------------------------------------------------------- /day-05/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/enizor.rs -------------------------------------------------------------------------------- /day-05/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/evqna.py -------------------------------------------------------------------------------- /day-05/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/giltho.ml -------------------------------------------------------------------------------- /day-05/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/jd.rs -------------------------------------------------------------------------------- /day-05/part-1/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/jon.py -------------------------------------------------------------------------------- /day-05/part-1/jon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/jon.sh -------------------------------------------------------------------------------- /day-05/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/julesdt.py -------------------------------------------------------------------------------- /day-05/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-05/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/th-ch.py -------------------------------------------------------------------------------- /day-05/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/thore.py -------------------------------------------------------------------------------- /day-05/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-05/part-1/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-1/youyoun.py -------------------------------------------------------------------------------- /day-05/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-05/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-05/part-2/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/bebert.pyx -------------------------------------------------------------------------------- /day-05/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/claussa.go -------------------------------------------------------------------------------- /day-05/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/david.py -------------------------------------------------------------------------------- /day-05/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/djou.go -------------------------------------------------------------------------------- /day-05/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/enizor.rs -------------------------------------------------------------------------------- /day-05/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/evqna.py -------------------------------------------------------------------------------- /day-05/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/giltho.ml -------------------------------------------------------------------------------- /day-05/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/jd.rs -------------------------------------------------------------------------------- /day-05/part-2/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/jon.py -------------------------------------------------------------------------------- /day-05/part-2/jon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/jon.sh -------------------------------------------------------------------------------- /day-05/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/julesdt.py -------------------------------------------------------------------------------- /day-05/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-05/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/th-ch.py -------------------------------------------------------------------------------- /day-05/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/thore.py -------------------------------------------------------------------------------- /day-05/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-05/part-2/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-05/part-2/youyoun.py -------------------------------------------------------------------------------- /day-06/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/ayc0.txt -------------------------------------------------------------------------------- /day-06/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/ayoub.txt -------------------------------------------------------------------------------- /day-06/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/bebert.txt -------------------------------------------------------------------------------- /day-06/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/claussa.txt -------------------------------------------------------------------------------- /day-06/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/coco.txt -------------------------------------------------------------------------------- /day-06/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/david.txt -------------------------------------------------------------------------------- /day-06/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/djou.txt -------------------------------------------------------------------------------- /day-06/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/enizor.txt -------------------------------------------------------------------------------- /day-06/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/evqna.txt -------------------------------------------------------------------------------- /day-06/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/giltho.txt -------------------------------------------------------------------------------- /day-06/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/jd.txt -------------------------------------------------------------------------------- /day-06/input/jon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/jon.txt -------------------------------------------------------------------------------- /day-06/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/julesdt.txt -------------------------------------------------------------------------------- /day-06/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/skasch.txt -------------------------------------------------------------------------------- /day-06/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/th-ch.txt -------------------------------------------------------------------------------- /day-06/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/thore.txt -------------------------------------------------------------------------------- /day-06/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/troisdiz.txt -------------------------------------------------------------------------------- /day-06/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/input/youyoun.txt -------------------------------------------------------------------------------- /day-06/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-06/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-06/part-1/bebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/bebert.py -------------------------------------------------------------------------------- /day-06/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-06/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/claussa.go -------------------------------------------------------------------------------- /day-06/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/coco.py -------------------------------------------------------------------------------- /day-06/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/david.py -------------------------------------------------------------------------------- /day-06/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/djou.go -------------------------------------------------------------------------------- /day-06/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/enizor.rs -------------------------------------------------------------------------------- /day-06/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/evqna.py -------------------------------------------------------------------------------- /day-06/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/giltho.ml -------------------------------------------------------------------------------- /day-06/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/jd.rs -------------------------------------------------------------------------------- /day-06/part-1/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/jon.py -------------------------------------------------------------------------------- /day-06/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/julesdt.py -------------------------------------------------------------------------------- /day-06/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-06/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/th-ch.py -------------------------------------------------------------------------------- /day-06/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/thore.py -------------------------------------------------------------------------------- /day-06/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-06/part-1/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-1/youyoun.py -------------------------------------------------------------------------------- /day-06/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-06/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-06/part-2/bebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/bebert.py -------------------------------------------------------------------------------- /day-06/part-2/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/bebert.pyx -------------------------------------------------------------------------------- /day-06/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/claussa.go -------------------------------------------------------------------------------- /day-06/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/coco.py -------------------------------------------------------------------------------- /day-06/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/david.py -------------------------------------------------------------------------------- /day-06/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/djou.go -------------------------------------------------------------------------------- /day-06/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/enizor.rs -------------------------------------------------------------------------------- /day-06/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/evqna.py -------------------------------------------------------------------------------- /day-06/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/giltho.ml -------------------------------------------------------------------------------- /day-06/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/jd.rs -------------------------------------------------------------------------------- /day-06/part-2/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/jon.py -------------------------------------------------------------------------------- /day-06/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/julesdt.py -------------------------------------------------------------------------------- /day-06/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-06/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/th-ch.py -------------------------------------------------------------------------------- /day-06/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/thore.py -------------------------------------------------------------------------------- /day-06/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-06/part-2/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-06/part-2/youyoun.py -------------------------------------------------------------------------------- /day-07/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/ayc0.txt -------------------------------------------------------------------------------- /day-07/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/ayoub.txt -------------------------------------------------------------------------------- /day-07/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/bebert.txt -------------------------------------------------------------------------------- /day-07/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/claussa.txt -------------------------------------------------------------------------------- /day-07/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/coco.txt -------------------------------------------------------------------------------- /day-07/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/david.txt -------------------------------------------------------------------------------- /day-07/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/djou.txt -------------------------------------------------------------------------------- /day-07/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/enizor.txt -------------------------------------------------------------------------------- /day-07/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/evqna.txt -------------------------------------------------------------------------------- /day-07/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/giltho.txt -------------------------------------------------------------------------------- /day-07/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/jd.txt -------------------------------------------------------------------------------- /day-07/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/julesdt.txt -------------------------------------------------------------------------------- /day-07/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/skasch.txt -------------------------------------------------------------------------------- /day-07/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/th-ch.txt -------------------------------------------------------------------------------- /day-07/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/thore.txt -------------------------------------------------------------------------------- /day-07/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/troisdiz.txt -------------------------------------------------------------------------------- /day-07/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/input/youyoun.txt -------------------------------------------------------------------------------- /day-07/part-1/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/ayc0.js -------------------------------------------------------------------------------- /day-07/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-07/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-07/part-1/bebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/bebert.py -------------------------------------------------------------------------------- /day-07/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/claussa.go -------------------------------------------------------------------------------- /day-07/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/coco.py -------------------------------------------------------------------------------- /day-07/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/david.py -------------------------------------------------------------------------------- /day-07/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/djou.go -------------------------------------------------------------------------------- /day-07/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/enizor.rs -------------------------------------------------------------------------------- /day-07/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/evqna.py -------------------------------------------------------------------------------- /day-07/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/giltho.ml -------------------------------------------------------------------------------- /day-07/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/jd.rs -------------------------------------------------------------------------------- /day-07/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/julesdt.py -------------------------------------------------------------------------------- /day-07/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-07/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/th-ch.py -------------------------------------------------------------------------------- /day-07/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/thore.py -------------------------------------------------------------------------------- /day-07/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-07/part-1/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-1/youyoun.py -------------------------------------------------------------------------------- /day-07/part-2/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/ayc0.js -------------------------------------------------------------------------------- /day-07/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-07/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-07/part-2/bebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/bebert.py -------------------------------------------------------------------------------- /day-07/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/claussa.go -------------------------------------------------------------------------------- /day-07/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/coco.py -------------------------------------------------------------------------------- /day-07/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/david.py -------------------------------------------------------------------------------- /day-07/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/djou.go -------------------------------------------------------------------------------- /day-07/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/enizor.rs -------------------------------------------------------------------------------- /day-07/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/evqna.py -------------------------------------------------------------------------------- /day-07/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/giltho.ml -------------------------------------------------------------------------------- /day-07/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/jd.rs -------------------------------------------------------------------------------- /day-07/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/julesdt.py -------------------------------------------------------------------------------- /day-07/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-07/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/th-ch.py -------------------------------------------------------------------------------- /day-07/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/thore.py -------------------------------------------------------------------------------- /day-07/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-07/part-2/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-07/part-2/youyoun.py -------------------------------------------------------------------------------- /day-08/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/ayc0.txt -------------------------------------------------------------------------------- /day-08/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/ayoub.txt -------------------------------------------------------------------------------- /day-08/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/bebert.txt -------------------------------------------------------------------------------- /day-08/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/claussa.txt -------------------------------------------------------------------------------- /day-08/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/coco.txt -------------------------------------------------------------------------------- /day-08/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/david.txt -------------------------------------------------------------------------------- /day-08/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/djou.txt -------------------------------------------------------------------------------- /day-08/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/enizor.txt -------------------------------------------------------------------------------- /day-08/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/giltho.txt -------------------------------------------------------------------------------- /day-08/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/jd.txt -------------------------------------------------------------------------------- /day-08/input/jon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/jon.txt -------------------------------------------------------------------------------- /day-08/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/julesdt.txt -------------------------------------------------------------------------------- /day-08/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/skasch.txt -------------------------------------------------------------------------------- /day-08/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/th-ch.txt -------------------------------------------------------------------------------- /day-08/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/thore.txt -------------------------------------------------------------------------------- /day-08/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/troisdiz.txt -------------------------------------------------------------------------------- /day-08/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/input/youyoun.txt -------------------------------------------------------------------------------- /day-08/part-1/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/ayc0.js -------------------------------------------------------------------------------- /day-08/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-08/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-08/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/claussa.go -------------------------------------------------------------------------------- /day-08/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/coco.py -------------------------------------------------------------------------------- /day-08/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/david.py -------------------------------------------------------------------------------- /day-08/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/djou.go -------------------------------------------------------------------------------- /day-08/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/enizor.rs -------------------------------------------------------------------------------- /day-08/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/giltho.ml -------------------------------------------------------------------------------- /day-08/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/jd.rs -------------------------------------------------------------------------------- /day-08/part-1/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/jon.py -------------------------------------------------------------------------------- /day-08/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/julesdt.py -------------------------------------------------------------------------------- /day-08/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-08/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/th-ch.py -------------------------------------------------------------------------------- /day-08/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/thore.py -------------------------------------------------------------------------------- /day-08/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-08/part-1/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-1/youyoun.py -------------------------------------------------------------------------------- /day-08/part-2/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/ayc0.js -------------------------------------------------------------------------------- /day-08/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-08/part-2/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/bebert.pyx -------------------------------------------------------------------------------- /day-08/part-2/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/claussa.go -------------------------------------------------------------------------------- /day-08/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/coco.py -------------------------------------------------------------------------------- /day-08/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/david.py -------------------------------------------------------------------------------- /day-08/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/djou.go -------------------------------------------------------------------------------- /day-08/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/enizor.rs -------------------------------------------------------------------------------- /day-08/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/giltho.ml -------------------------------------------------------------------------------- /day-08/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/jd.rs -------------------------------------------------------------------------------- /day-08/part-2/jon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/jon.py -------------------------------------------------------------------------------- /day-08/part-2/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/julesdt.py -------------------------------------------------------------------------------- /day-08/part-2/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/skasch.cpp -------------------------------------------------------------------------------- /day-08/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/th-ch.py -------------------------------------------------------------------------------- /day-08/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/thore.py -------------------------------------------------------------------------------- /day-08/part-2/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/troisdiz.go -------------------------------------------------------------------------------- /day-08/part-2/youyoun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-08/part-2/youyoun.py -------------------------------------------------------------------------------- /day-09/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/ayc0.txt -------------------------------------------------------------------------------- /day-09/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/ayoub.txt -------------------------------------------------------------------------------- /day-09/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/bebert.txt -------------------------------------------------------------------------------- /day-09/input/claussa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/claussa.txt -------------------------------------------------------------------------------- /day-09/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/coco.txt -------------------------------------------------------------------------------- /day-09/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/david.txt -------------------------------------------------------------------------------- /day-09/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/djou.txt -------------------------------------------------------------------------------- /day-09/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/enizor.txt -------------------------------------------------------------------------------- /day-09/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/evqna.txt -------------------------------------------------------------------------------- /day-09/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/giltho.txt -------------------------------------------------------------------------------- /day-09/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/jd.txt -------------------------------------------------------------------------------- /day-09/input/julesdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/julesdt.txt -------------------------------------------------------------------------------- /day-09/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/skasch.txt -------------------------------------------------------------------------------- /day-09/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/th-ch.txt -------------------------------------------------------------------------------- /day-09/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/thore.txt -------------------------------------------------------------------------------- /day-09/input/troisdiz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/troisdiz.txt -------------------------------------------------------------------------------- /day-09/input/youyoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/input/youyoun.txt -------------------------------------------------------------------------------- /day-09/part-1/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/ayc0.js -------------------------------------------------------------------------------- /day-09/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-09/part-1/bebert.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/bebert.pyx -------------------------------------------------------------------------------- /day-09/part-1/claussa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/claussa.go -------------------------------------------------------------------------------- /day-09/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/coco.py -------------------------------------------------------------------------------- /day-09/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/david.py -------------------------------------------------------------------------------- /day-09/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/djou.go -------------------------------------------------------------------------------- /day-09/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/enizor.rs -------------------------------------------------------------------------------- /day-09/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/evqna.py -------------------------------------------------------------------------------- /day-09/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/giltho.ml -------------------------------------------------------------------------------- /day-09/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/jd.rs -------------------------------------------------------------------------------- /day-09/part-1/julesdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/julesdt.py -------------------------------------------------------------------------------- /day-09/part-1/skasch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/skasch.cpp -------------------------------------------------------------------------------- /day-09/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/th-ch.py -------------------------------------------------------------------------------- /day-09/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/thore.py -------------------------------------------------------------------------------- /day-09/part-1/troisdiz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-1/troisdiz.go -------------------------------------------------------------------------------- /day-09/part-2/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/ayc0.js -------------------------------------------------------------------------------- /day-09/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-09/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/coco.py -------------------------------------------------------------------------------- /day-09/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/david.py -------------------------------------------------------------------------------- /day-09/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/djou.go -------------------------------------------------------------------------------- /day-09/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/enizor.rs -------------------------------------------------------------------------------- /day-09/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/evqna.py -------------------------------------------------------------------------------- /day-09/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/giltho.ml -------------------------------------------------------------------------------- /day-09/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/jd.rs -------------------------------------------------------------------------------- /day-09/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/th-ch.py -------------------------------------------------------------------------------- /day-09/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-09/part-2/thore.py -------------------------------------------------------------------------------- /day-10/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/ayc0.txt -------------------------------------------------------------------------------- /day-10/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/ayoub.txt -------------------------------------------------------------------------------- /day-10/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/bebert.txt -------------------------------------------------------------------------------- /day-10/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/coco.txt -------------------------------------------------------------------------------- /day-10/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/david.txt -------------------------------------------------------------------------------- /day-10/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/djou.txt -------------------------------------------------------------------------------- /day-10/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/enizor.txt -------------------------------------------------------------------------------- /day-10/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/evqna.txt -------------------------------------------------------------------------------- /day-10/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/giltho.txt -------------------------------------------------------------------------------- /day-10/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/jd.txt -------------------------------------------------------------------------------- /day-10/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/skasch.txt -------------------------------------------------------------------------------- /day-10/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/th-ch.txt -------------------------------------------------------------------------------- /day-10/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/input/thore.txt -------------------------------------------------------------------------------- /day-10/part-1/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/ayc0.js -------------------------------------------------------------------------------- /day-10/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-10/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/coco.py -------------------------------------------------------------------------------- /day-10/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/david.py -------------------------------------------------------------------------------- /day-10/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/djou.go -------------------------------------------------------------------------------- /day-10/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/enizor.rs -------------------------------------------------------------------------------- /day-10/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/evqna.py -------------------------------------------------------------------------------- /day-10/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/giltho.ml -------------------------------------------------------------------------------- /day-10/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/jd.rs -------------------------------------------------------------------------------- /day-10/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/th-ch.go -------------------------------------------------------------------------------- /day-10/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-1/thore.py -------------------------------------------------------------------------------- /day-10/part-2/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/ayc0.js -------------------------------------------------------------------------------- /day-10/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-10/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/coco.py -------------------------------------------------------------------------------- /day-10/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/david.py -------------------------------------------------------------------------------- /day-10/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/djou.go -------------------------------------------------------------------------------- /day-10/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/enizor.rs -------------------------------------------------------------------------------- /day-10/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/evqna.py -------------------------------------------------------------------------------- /day-10/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/giltho.ml -------------------------------------------------------------------------------- /day-10/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/jd.rs -------------------------------------------------------------------------------- /day-10/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/th-ch.go -------------------------------------------------------------------------------- /day-10/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-10/part-2/thore.py -------------------------------------------------------------------------------- /day-11/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/ayc0.txt -------------------------------------------------------------------------------- /day-11/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/ayoub.txt -------------------------------------------------------------------------------- /day-11/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/bebert.txt -------------------------------------------------------------------------------- /day-11/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/coco.txt -------------------------------------------------------------------------------- /day-11/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/david.txt -------------------------------------------------------------------------------- /day-11/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/djou.txt -------------------------------------------------------------------------------- /day-11/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/enizor.txt -------------------------------------------------------------------------------- /day-11/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/evqna.txt -------------------------------------------------------------------------------- /day-11/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/giltho.txt -------------------------------------------------------------------------------- /day-11/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/jd.txt -------------------------------------------------------------------------------- /day-11/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/skasch.txt -------------------------------------------------------------------------------- /day-11/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/th-ch.txt -------------------------------------------------------------------------------- /day-11/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/input/thore.txt -------------------------------------------------------------------------------- /day-11/part-1/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/ayc0.js -------------------------------------------------------------------------------- /day-11/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-11/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/coco.py -------------------------------------------------------------------------------- /day-11/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/david.py -------------------------------------------------------------------------------- /day-11/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/djou.go -------------------------------------------------------------------------------- /day-11/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/enizor.rs -------------------------------------------------------------------------------- /day-11/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/evqna.py -------------------------------------------------------------------------------- /day-11/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/giltho.ml -------------------------------------------------------------------------------- /day-11/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/jd.rs -------------------------------------------------------------------------------- /day-11/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/th-ch.go -------------------------------------------------------------------------------- /day-11/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-1/thore.py -------------------------------------------------------------------------------- /day-11/part-2/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/ayc0.js -------------------------------------------------------------------------------- /day-11/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-11/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/coco.py -------------------------------------------------------------------------------- /day-11/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/david.py -------------------------------------------------------------------------------- /day-11/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/djou.go -------------------------------------------------------------------------------- /day-11/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/enizor.rs -------------------------------------------------------------------------------- /day-11/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/evqna.py -------------------------------------------------------------------------------- /day-11/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/giltho.ml -------------------------------------------------------------------------------- /day-11/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/jd.rs -------------------------------------------------------------------------------- /day-11/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/th-ch.go -------------------------------------------------------------------------------- /day-11/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-11/part-2/thore.py -------------------------------------------------------------------------------- /day-12/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/ayc0.txt -------------------------------------------------------------------------------- /day-12/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/ayoub.txt -------------------------------------------------------------------------------- /day-12/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/bebert.txt -------------------------------------------------------------------------------- /day-12/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/coco.txt -------------------------------------------------------------------------------- /day-12/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/david.txt -------------------------------------------------------------------------------- /day-12/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/djou.txt -------------------------------------------------------------------------------- /day-12/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/enizor.txt -------------------------------------------------------------------------------- /day-12/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/evqna.txt -------------------------------------------------------------------------------- /day-12/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/giltho.txt -------------------------------------------------------------------------------- /day-12/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/jd.txt -------------------------------------------------------------------------------- /day-12/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/skasch.txt -------------------------------------------------------------------------------- /day-12/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/th-ch.txt -------------------------------------------------------------------------------- /day-12/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/input/thore.txt -------------------------------------------------------------------------------- /day-12/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-12/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-12/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/coco.py -------------------------------------------------------------------------------- /day-12/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/david.py -------------------------------------------------------------------------------- /day-12/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/djou.go -------------------------------------------------------------------------------- /day-12/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/enizor.rs -------------------------------------------------------------------------------- /day-12/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/evqna.py -------------------------------------------------------------------------------- /day-12/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/giltho.ml -------------------------------------------------------------------------------- /day-12/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/jd.rs -------------------------------------------------------------------------------- /day-12/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/th-ch.go -------------------------------------------------------------------------------- /day-12/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-1/thore.py -------------------------------------------------------------------------------- /day-12/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-12/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-12/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/coco.py -------------------------------------------------------------------------------- /day-12/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/david.py -------------------------------------------------------------------------------- /day-12/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/djou.go -------------------------------------------------------------------------------- /day-12/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/enizor.rs -------------------------------------------------------------------------------- /day-12/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/evqna.py -------------------------------------------------------------------------------- /day-12/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/giltho.ml -------------------------------------------------------------------------------- /day-12/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/jd.rs -------------------------------------------------------------------------------- /day-12/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/th-ch.go -------------------------------------------------------------------------------- /day-12/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-12/part-2/thore.py -------------------------------------------------------------------------------- /day-13/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/ayc0.txt -------------------------------------------------------------------------------- /day-13/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/ayoub.txt -------------------------------------------------------------------------------- /day-13/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/bebert.txt -------------------------------------------------------------------------------- /day-13/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/coco.txt -------------------------------------------------------------------------------- /day-13/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/david.txt -------------------------------------------------------------------------------- /day-13/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/djou.txt -------------------------------------------------------------------------------- /day-13/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/enizor.txt -------------------------------------------------------------------------------- /day-13/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/evqna.txt -------------------------------------------------------------------------------- /day-13/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/giltho.txt -------------------------------------------------------------------------------- /day-13/input/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/jd.txt -------------------------------------------------------------------------------- /day-13/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/skasch.txt -------------------------------------------------------------------------------- /day-13/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/th-ch.txt -------------------------------------------------------------------------------- /day-13/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/input/thore.txt -------------------------------------------------------------------------------- /day-13/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-13/part-1/ayoub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/ayoub.go -------------------------------------------------------------------------------- /day-13/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/coco.py -------------------------------------------------------------------------------- /day-13/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/david.py -------------------------------------------------------------------------------- /day-13/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/djou.go -------------------------------------------------------------------------------- /day-13/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/enizor.rs -------------------------------------------------------------------------------- /day-13/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/evqna.py -------------------------------------------------------------------------------- /day-13/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/giltho.ml -------------------------------------------------------------------------------- /day-13/part-1/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/jd.rs -------------------------------------------------------------------------------- /day-13/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/th-ch.go -------------------------------------------------------------------------------- /day-13/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-1/thore.py -------------------------------------------------------------------------------- /day-13/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-13/part-2/ayoub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/ayoub.go -------------------------------------------------------------------------------- /day-13/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/coco.py -------------------------------------------------------------------------------- /day-13/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/david.py -------------------------------------------------------------------------------- /day-13/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/djou.go -------------------------------------------------------------------------------- /day-13/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/enizor.rs -------------------------------------------------------------------------------- /day-13/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/evqna.py -------------------------------------------------------------------------------- /day-13/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/giltho.ml -------------------------------------------------------------------------------- /day-13/part-2/jd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/jd.rs -------------------------------------------------------------------------------- /day-13/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/th-ch.go -------------------------------------------------------------------------------- /day-13/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-13/part-2/thore.py -------------------------------------------------------------------------------- /day-14/input/ayc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/ayc0.txt -------------------------------------------------------------------------------- /day-14/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/ayoub.txt -------------------------------------------------------------------------------- /day-14/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/bebert.txt -------------------------------------------------------------------------------- /day-14/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/coco.txt -------------------------------------------------------------------------------- /day-14/input/david.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/david.txt -------------------------------------------------------------------------------- /day-14/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/djou.txt -------------------------------------------------------------------------------- /day-14/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/enizor.txt -------------------------------------------------------------------------------- /day-14/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/evqna.txt -------------------------------------------------------------------------------- /day-14/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/giltho.txt -------------------------------------------------------------------------------- /day-14/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/skasch.txt -------------------------------------------------------------------------------- /day-14/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/th-ch.txt -------------------------------------------------------------------------------- /day-14/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/input/thore.txt -------------------------------------------------------------------------------- /day-14/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-14/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-14/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/coco.py -------------------------------------------------------------------------------- /day-14/part-1/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/david.py -------------------------------------------------------------------------------- /day-14/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/djou.go -------------------------------------------------------------------------------- /day-14/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/enizor.rs -------------------------------------------------------------------------------- /day-14/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/evqna.py -------------------------------------------------------------------------------- /day-14/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/giltho.ml -------------------------------------------------------------------------------- /day-14/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/th-ch.go -------------------------------------------------------------------------------- /day-14/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-1/thore.py -------------------------------------------------------------------------------- /day-14/part-2/ayc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/ayc0.js -------------------------------------------------------------------------------- /day-14/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-14/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-14/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/coco.py -------------------------------------------------------------------------------- /day-14/part-2/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/david.py -------------------------------------------------------------------------------- /day-14/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/djou.go -------------------------------------------------------------------------------- /day-14/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/enizor.rs -------------------------------------------------------------------------------- /day-14/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/evqna.py -------------------------------------------------------------------------------- /day-14/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/giltho.ml -------------------------------------------------------------------------------- /day-14/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/th-ch.go -------------------------------------------------------------------------------- /day-14/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-14/part-2/thore.py -------------------------------------------------------------------------------- /day-15/input/ayc0.txt: -------------------------------------------------------------------------------- 1 | 9,6,0,10,18,2,1 2 | -------------------------------------------------------------------------------- /day-15/input/ayoub.txt: -------------------------------------------------------------------------------- 1 | 18,11,9,0,5,1 -------------------------------------------------------------------------------- /day-15/input/badouralix.txt: -------------------------------------------------------------------------------- 1 | 10,16,6,0,1,17 2 | -------------------------------------------------------------------------------- /day-15/input/bebert.txt: -------------------------------------------------------------------------------- 1 | 0,20,7,16,1,18,15 2 | -------------------------------------------------------------------------------- /day-15/input/coco.txt: -------------------------------------------------------------------------------- 1 | 6,4,12,1,20,0,16 -------------------------------------------------------------------------------- /day-15/input/djou.txt: -------------------------------------------------------------------------------- 1 | 1,12,0,20,8,16 2 | -------------------------------------------------------------------------------- /day-15/input/enizor.txt: -------------------------------------------------------------------------------- 1 | 15,5,1,4,7,0 -------------------------------------------------------------------------------- /day-15/input/evqna.txt: -------------------------------------------------------------------------------- 1 | 20,9,11,0,1,2 -------------------------------------------------------------------------------- /day-15/input/giltho.txt: -------------------------------------------------------------------------------- 1 | 10,16,6,0,1,17 -------------------------------------------------------------------------------- /day-15/input/silvestre.txt: -------------------------------------------------------------------------------- 1 | 7,14,0,17,11,1,2 -------------------------------------------------------------------------------- /day-15/input/skasch.txt: -------------------------------------------------------------------------------- 1 | 14,3,1,0,9,5 -------------------------------------------------------------------------------- /day-15/input/th-ch.txt: -------------------------------------------------------------------------------- 1 | 15,5,1,4,7,0 2 | -------------------------------------------------------------------------------- /day-15/input/thore.txt: -------------------------------------------------------------------------------- 1 | 2,0,6,12,1,3 -------------------------------------------------------------------------------- /day-15/input/troisdiz.txt: -------------------------------------------------------------------------------- 1 | 12,20,0,6,1,17,7 2 | -------------------------------------------------------------------------------- /day-15/input/youyoun.txt: -------------------------------------------------------------------------------- 1 | 0,5,4,1,10,14,7 2 | -------------------------------------------------------------------------------- /day-15/part-1/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/ayc0.nim -------------------------------------------------------------------------------- /day-15/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-15/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/coco.py -------------------------------------------------------------------------------- /day-15/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/djou.go -------------------------------------------------------------------------------- /day-15/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/enizor.rs -------------------------------------------------------------------------------- /day-15/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/evqna.py -------------------------------------------------------------------------------- /day-15/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/giltho.ml -------------------------------------------------------------------------------- /day-15/part-1/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/giltho.rs -------------------------------------------------------------------------------- /day-15/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/th-ch.go -------------------------------------------------------------------------------- /day-15/part-1/thore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-1/thore.c -------------------------------------------------------------------------------- /day-15/part-2/ayc0.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/ayc0.nim -------------------------------------------------------------------------------- /day-15/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-15/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/coco.py -------------------------------------------------------------------------------- /day-15/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/djou.go -------------------------------------------------------------------------------- /day-15/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/enizor.rs -------------------------------------------------------------------------------- /day-15/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/evqna.py -------------------------------------------------------------------------------- /day-15/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/giltho.ml -------------------------------------------------------------------------------- /day-15/part-2/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/giltho.rs -------------------------------------------------------------------------------- /day-15/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/th-ch.go -------------------------------------------------------------------------------- /day-15/part-2/thore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-15/part-2/thore.c -------------------------------------------------------------------------------- /day-16/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/ayoub.txt -------------------------------------------------------------------------------- /day-16/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/coco.txt -------------------------------------------------------------------------------- /day-16/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/djou.txt -------------------------------------------------------------------------------- /day-16/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/enizor.txt -------------------------------------------------------------------------------- /day-16/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/evqna.txt -------------------------------------------------------------------------------- /day-16/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/giltho.txt -------------------------------------------------------------------------------- /day-16/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/skasch.txt -------------------------------------------------------------------------------- /day-16/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/th-ch.txt -------------------------------------------------------------------------------- /day-16/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/input/thore.txt -------------------------------------------------------------------------------- /day-16/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-16/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/coco.py -------------------------------------------------------------------------------- /day-16/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/djou.go -------------------------------------------------------------------------------- /day-16/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/enizor.rs -------------------------------------------------------------------------------- /day-16/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/evqna.py -------------------------------------------------------------------------------- /day-16/part-1/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/giltho.rs -------------------------------------------------------------------------------- /day-16/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/th-ch.go -------------------------------------------------------------------------------- /day-16/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-1/thore.py -------------------------------------------------------------------------------- /day-16/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-16/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/coco.py -------------------------------------------------------------------------------- /day-16/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/djou.go -------------------------------------------------------------------------------- /day-16/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/enizor.rs -------------------------------------------------------------------------------- /day-16/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/evqna.py -------------------------------------------------------------------------------- /day-16/part-2/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/giltho.rs -------------------------------------------------------------------------------- /day-16/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/th-ch.go -------------------------------------------------------------------------------- /day-16/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-16/part-2/thore.py -------------------------------------------------------------------------------- /day-17/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/ayoub.txt -------------------------------------------------------------------------------- /day-17/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/bebert.txt -------------------------------------------------------------------------------- /day-17/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/coco.txt -------------------------------------------------------------------------------- /day-17/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/djou.txt -------------------------------------------------------------------------------- /day-17/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/enizor.txt -------------------------------------------------------------------------------- /day-17/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/giltho.txt -------------------------------------------------------------------------------- /day-17/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/skasch.txt -------------------------------------------------------------------------------- /day-17/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/th-ch.txt -------------------------------------------------------------------------------- /day-17/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/input/thore.txt -------------------------------------------------------------------------------- /day-17/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-17/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/coco.py -------------------------------------------------------------------------------- /day-17/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/djou.go -------------------------------------------------------------------------------- /day-17/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/enizor.rs -------------------------------------------------------------------------------- /day-17/part-1/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/giltho.rs -------------------------------------------------------------------------------- /day-17/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/th-ch.go -------------------------------------------------------------------------------- /day-17/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/thore.py -------------------------------------------------------------------------------- /day-17/part-1/thore2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-1/thore2.py -------------------------------------------------------------------------------- /day-17/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-17/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/coco.py -------------------------------------------------------------------------------- /day-17/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/djou.go -------------------------------------------------------------------------------- /day-17/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/enizor.rs -------------------------------------------------------------------------------- /day-17/part-2/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/giltho.rs -------------------------------------------------------------------------------- /day-17/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/th-ch.go -------------------------------------------------------------------------------- /day-17/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/thore.py -------------------------------------------------------------------------------- /day-17/part-2/thore2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-17/part-2/thore2.py -------------------------------------------------------------------------------- /day-18/input/ayoub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/ayoub.txt -------------------------------------------------------------------------------- /day-18/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/bebert.txt -------------------------------------------------------------------------------- /day-18/input/djou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/djou.txt -------------------------------------------------------------------------------- /day-18/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/enizor.txt -------------------------------------------------------------------------------- /day-18/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/evqna.txt -------------------------------------------------------------------------------- /day-18/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/giltho.txt -------------------------------------------------------------------------------- /day-18/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/skasch.txt -------------------------------------------------------------------------------- /day-18/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/th-ch.txt -------------------------------------------------------------------------------- /day-18/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/input/thore.txt -------------------------------------------------------------------------------- /day-18/part-1/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/ayoub.cpp -------------------------------------------------------------------------------- /day-18/part-1/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/djou.go -------------------------------------------------------------------------------- /day-18/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/enizor.rs -------------------------------------------------------------------------------- /day-18/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/evqna.py -------------------------------------------------------------------------------- /day-18/part-1/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/giltho.ml -------------------------------------------------------------------------------- /day-18/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/th-ch.go -------------------------------------------------------------------------------- /day-18/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/thore.py -------------------------------------------------------------------------------- /day-18/part-1/thore2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-1/thore2.py -------------------------------------------------------------------------------- /day-18/part-2/ayoub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/ayoub.cpp -------------------------------------------------------------------------------- /day-18/part-2/djou.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/djou.go -------------------------------------------------------------------------------- /day-18/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/enizor.rs -------------------------------------------------------------------------------- /day-18/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/evqna.py -------------------------------------------------------------------------------- /day-18/part-2/giltho.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/giltho.ml -------------------------------------------------------------------------------- /day-18/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/th-ch.go -------------------------------------------------------------------------------- /day-18/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/thore.py -------------------------------------------------------------------------------- /day-18/part-2/thore2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-18/part-2/thore2.py -------------------------------------------------------------------------------- /day-19/input/bebert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/bebert.txt -------------------------------------------------------------------------------- /day-19/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/coco.txt -------------------------------------------------------------------------------- /day-19/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/enizor.txt -------------------------------------------------------------------------------- /day-19/input/evqna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/evqna.txt -------------------------------------------------------------------------------- /day-19/input/giltho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/giltho.txt -------------------------------------------------------------------------------- /day-19/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/skasch.txt -------------------------------------------------------------------------------- /day-19/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/th-ch.txt -------------------------------------------------------------------------------- /day-19/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/input/thore.txt -------------------------------------------------------------------------------- /day-19/part-1/bebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-1/bebert.py -------------------------------------------------------------------------------- /day-19/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-1/coco.py -------------------------------------------------------------------------------- /day-19/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-1/enizor.rs -------------------------------------------------------------------------------- /day-19/part-1/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-1/evqna.py -------------------------------------------------------------------------------- /day-19/part-1/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-1/giltho.rs -------------------------------------------------------------------------------- /day-19/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-1/th-ch.py -------------------------------------------------------------------------------- /day-19/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-1/thore.py -------------------------------------------------------------------------------- /day-19/part-2/bebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-2/bebert.py -------------------------------------------------------------------------------- /day-19/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-2/coco.py -------------------------------------------------------------------------------- /day-19/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-2/enizor.rs -------------------------------------------------------------------------------- /day-19/part-2/evqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-2/evqna.py -------------------------------------------------------------------------------- /day-19/part-2/giltho.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-2/giltho.rs -------------------------------------------------------------------------------- /day-19/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-2/th-ch.py -------------------------------------------------------------------------------- /day-19/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-19/part-2/thore.py -------------------------------------------------------------------------------- /day-20/input/enizor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/input/enizor.txt -------------------------------------------------------------------------------- /day-20/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/input/skasch.txt -------------------------------------------------------------------------------- /day-20/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/input/th-ch.txt -------------------------------------------------------------------------------- /day-20/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/input/thore.txt -------------------------------------------------------------------------------- /day-20/part-1/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/part-1/enizor.rs -------------------------------------------------------------------------------- /day-20/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/part-1/th-ch.py -------------------------------------------------------------------------------- /day-20/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/part-1/thore.py -------------------------------------------------------------------------------- /day-20/part-2/enizor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/part-2/enizor.rs -------------------------------------------------------------------------------- /day-20/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/part-2/th-ch.py -------------------------------------------------------------------------------- /day-20/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-20/part-2/thore.py -------------------------------------------------------------------------------- /day-21/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/input/coco.txt -------------------------------------------------------------------------------- /day-21/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/input/skasch.txt -------------------------------------------------------------------------------- /day-21/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/input/th-ch.txt -------------------------------------------------------------------------------- /day-21/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/input/thore.txt -------------------------------------------------------------------------------- /day-21/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/part-1/coco.py -------------------------------------------------------------------------------- /day-21/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/part-1/th-ch.py -------------------------------------------------------------------------------- /day-21/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/part-1/thore.py -------------------------------------------------------------------------------- /day-21/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/part-2/coco.py -------------------------------------------------------------------------------- /day-21/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/part-2/th-ch.py -------------------------------------------------------------------------------- /day-21/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-21/part-2/thore.py -------------------------------------------------------------------------------- /day-22/input/coco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/input/coco.txt -------------------------------------------------------------------------------- /day-22/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/input/skasch.txt -------------------------------------------------------------------------------- /day-22/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/input/th-ch.txt -------------------------------------------------------------------------------- /day-22/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/input/thore.txt -------------------------------------------------------------------------------- /day-22/part-1/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/part-1/coco.py -------------------------------------------------------------------------------- /day-22/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/part-1/th-ch.py -------------------------------------------------------------------------------- /day-22/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/part-1/thore.py -------------------------------------------------------------------------------- /day-22/part-2/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/part-2/coco.py -------------------------------------------------------------------------------- /day-22/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/part-2/th-ch.py -------------------------------------------------------------------------------- /day-22/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-22/part-2/thore.py -------------------------------------------------------------------------------- /day-23/input/badouralix.txt: -------------------------------------------------------------------------------- 1 | 784235916 2 | -------------------------------------------------------------------------------- /day-23/input/skasch.txt: -------------------------------------------------------------------------------- 1 | 364297581 -------------------------------------------------------------------------------- /day-23/input/th-ch.txt: -------------------------------------------------------------------------------- 1 | 364297581 2 | -------------------------------------------------------------------------------- /day-23/input/thore.txt: -------------------------------------------------------------------------------- 1 | 963275481 -------------------------------------------------------------------------------- /day-23/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-23/part-1/th-ch.py -------------------------------------------------------------------------------- /day-23/part-1/thore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-23/part-1/thore.c -------------------------------------------------------------------------------- /day-23/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-23/part-1/thore.py -------------------------------------------------------------------------------- /day-23/part-2/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-23/part-2/th-ch.go -------------------------------------------------------------------------------- /day-23/part-2/thore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-23/part-2/thore.c -------------------------------------------------------------------------------- /day-23/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-23/part-2/thore.py -------------------------------------------------------------------------------- /day-24/input/skasch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-24/input/skasch.txt -------------------------------------------------------------------------------- /day-24/input/th-ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-24/input/th-ch.txt -------------------------------------------------------------------------------- /day-24/input/thore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-24/input/thore.txt -------------------------------------------------------------------------------- /day-24/part-1/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-24/part-1/th-ch.py -------------------------------------------------------------------------------- /day-24/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-24/part-1/thore.py -------------------------------------------------------------------------------- /day-24/part-2/th-ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-24/part-2/th-ch.py -------------------------------------------------------------------------------- /day-24/part-2/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-24/part-2/thore.py -------------------------------------------------------------------------------- /day-25/input/badouralix.txt: -------------------------------------------------------------------------------- 1 | 6930903 2 | 19716708 3 | -------------------------------------------------------------------------------- /day-25/input/skasch.txt: -------------------------------------------------------------------------------- 1 | 15113849 2 | 4206373 -------------------------------------------------------------------------------- /day-25/input/th-ch.txt: -------------------------------------------------------------------------------- 1 | 15628416 2 | 11161639 3 | -------------------------------------------------------------------------------- /day-25/input/thore.txt: -------------------------------------------------------------------------------- 1 | 9232416 2 | 14144084 3 | -------------------------------------------------------------------------------- /day-25/part-1/th-ch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-25/part-1/th-ch.go -------------------------------------------------------------------------------- /day-25/part-1/thore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/day-25/part-1/thore.py -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/dune-project -------------------------------------------------------------------------------- /esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/esy.json -------------------------------------------------------------------------------- /esy.lock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/esy.lock/.gitattributes -------------------------------------------------------------------------------- /esy.lock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/esy.lock/.gitignore -------------------------------------------------------------------------------- /esy.lock/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/esy.lock/index.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/requirements.txt -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/setup.cfg -------------------------------------------------------------------------------- /tool/AOC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/AOC.py -------------------------------------------------------------------------------- /tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/config.py -------------------------------------------------------------------------------- /tool/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/create.py -------------------------------------------------------------------------------- /tool/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/discovery.py -------------------------------------------------------------------------------- /tool/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/distribution.py -------------------------------------------------------------------------------- /tool/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/model.py -------------------------------------------------------------------------------- /tool/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/parser.py -------------------------------------------------------------------------------- /tool/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/run.py -------------------------------------------------------------------------------- /tool/runners/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/bash.py -------------------------------------------------------------------------------- /tool/runners/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/c.py -------------------------------------------------------------------------------- /tool/runners/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/cpp.py -------------------------------------------------------------------------------- /tool/runners/deno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/deno.py -------------------------------------------------------------------------------- /tool/runners/deno_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/deno_ts.py -------------------------------------------------------------------------------- /tool/runners/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/go.py -------------------------------------------------------------------------------- /tool/runners/intcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/intcode.py -------------------------------------------------------------------------------- /tool/runners/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/java.py -------------------------------------------------------------------------------- /tool/runners/julia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/julia.py -------------------------------------------------------------------------------- /tool/runners/nim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/nim.py -------------------------------------------------------------------------------- /tool/runners/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/node.py -------------------------------------------------------------------------------- /tool/runners/ocaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/ocaml.py -------------------------------------------------------------------------------- /tool/runners/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/python.py -------------------------------------------------------------------------------- /tool/runners/ruby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/ruby.py -------------------------------------------------------------------------------- /tool/runners/rust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/rust.py -------------------------------------------------------------------------------- /tool/runners/ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/ts.py -------------------------------------------------------------------------------- /tool/runners/vlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/vlang.py -------------------------------------------------------------------------------- /tool/runners/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/wrapper.py -------------------------------------------------------------------------------- /tool/runners/zig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/runners/zig.py -------------------------------------------------------------------------------- /tool/templates/template.intcode: -------------------------------------------------------------------------------- 1 | 99 -------------------------------------------------------------------------------- /tool/templates/template.pyx: -------------------------------------------------------------------------------- 1 | cpdef int run(s): 2 | return 0 3 | -------------------------------------------------------------------------------- /tool/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tool/utils/__init__.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-ds/adventofcode-2020/HEAD/tslint.json --------------------------------------------------------------------------------