Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjray/advent-2016-clojure
Advent of Code 2016 Solutions in Clojure
https://github.com/rjray/advent-2016-clojure
Last synced: 26 days ago
JSON representation
Advent of Code 2016 Solutions in Clojure
- Host: GitHub
- URL: https://github.com/rjray/advent-2016-clojure
- Owner: rjray
- License: mit
- Created: 2024-10-12T03:00:40.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-10-28T05:43:38.000Z (2 months ago)
- Last Synced: 2024-10-28T10:08:49.718Z (2 months ago)
- Language: Clojure
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent-2016-clojure
This is my code for the 2016 [Advent of Code](https://adventofcode.com/2016),
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: 49/50 (98.00%)
Highest finish for first half: - (not tracked, doing this in 2024)
Highest finish for second half: - (not tracked, doing this in 2024)
## Usage
This project is managed with [Leiningen](https://leiningen.org/). Running the
following will download any dependencies and start a REPL:```
lein repl
```