My solutions to Advent of Code puzzles.
2025/
01/
input.txt # Puzzle input
example.txt # Example from puzzle description
solution.py # Python solution
solution.rs # Rust solution
solution.lisp # Common Lisp solution
solution.clj # Clojure solution
python setup.py 2025 1 pyThis creates 2025/01/ with empty input files and solution templates.
cd 2025/01
# Python
python solution.py
# Rust
rustc solution.rs -o solution && ./solution
# Common Lisp
sbcl --script solution.lisp
# Clojure (via Babashka)
bb solution.clj- Python 3
- Rust:
brew install rustor rustup.rs - Common Lisp:
brew install sbcl - Clojure:
brew install borkdude/brew/babashka