Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/clechasseur/adventofcode2023

https://adventofcode.com/2023
https://github.com/clechasseur/adventofcode2023

advent-of-code advent-of-code-2023 advent-of-code-2023-clojure aoc-2023-in-clojure

Last synced: about 1 month ago
JSON representation

https://adventofcode.com/2023

Awesome Lists containing this project

README

        

# adventofcode.y2023

My solutions to the Advent of Code 2023 puzzles. Using Clojure this year because of course. 😉

## Requirements

1. [JDK](https://adoptium.net/)
2. [Clojure](https://clojure.org/)
3. [Leiningen](https://leiningen.org/)

## Running the tests

### All puzzles for each day

```sh
lein test
```

Including slow tests:

```sh
lein test :with-slow
```

### Both puzzles for one day

```sh
lein test :day 1
```

### Single puzzle

```sh
lein test :puzzle d1/part1
```

### Utilities

```sh
lein test :util
```

### Everything

```sh
lein test :all
```