Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```