Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjray/advent-2024-clojure
Advent of Code 2024 (Clojure)
https://github.com/rjray/advent-2024-clojure
Last synced: 26 days ago
JSON representation
Advent of Code 2024 (Clojure)
- Host: GitHub
- URL: https://github.com/rjray/advent-2024-clojure
- Owner: rjray
- License: mit
- Created: 2024-11-29T18:00:59.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2024-12-07T06:23:36.000Z (about 1 month ago)
- Last Synced: 2024-12-07T06:26:58.791Z (about 1 month ago)
- Language: Clojure
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent-2024-clojure
This is my code for the 2024 [Advent of Code](https://adventofcode.com/2024),
all solutions in [Clojure](https://clojure.org/).All code is under the `src` directory. Each solution-file is named `dayNN.clj`
and contains both puzzle solutions for that day. These are the
publically-facing functions `part-1` and `part-2`. These files are the code
*exactly as I used it to solve and submit the answers*. If I revisit any of the
days and try to clean up or optimize the solutions, that work will be in a
separate file that will be named `dayNNbis.clj`
(["bis"](https://www.merriam-webster.com/dictionary/bis)). I may go back and
comment code after the fact, when I'm not racing the clock.## Stats
Number of answers correct on first submission: 25/26 (96.15%)
Highest finish for first half: 695
Highest finish for second half: 2907
## Usage
This project is managed with [Leiningen](https://leiningen.org/). Running the
following will download any dependencies and start a REPL:```
lein repl
```