Skip to content
This repository was archived by the owner on Dec 3, 2025. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 464 Bytes

File metadata and controls

12 lines (9 loc) · 464 Bytes

Advent of Code 2019 in Clojure

This is my attempt at AoC2019 puzzles in Clojure running on Babashka.

Expect more details soon.

Notes: Day 9 required me to change the representation of memory from a simple vector to a map (in order to be able to access addresses beyond the initial program). I used a sorted map to be able to test it easily against vectors, by extracting the vals from it directly (a standard map does not guarantee the order of its items).