Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/clechasseur/adventofcode2023
- Owner: clechasseur
- License: mit
- Created: 2023-11-21T18:47:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-26T06:32:43.000Z (about 1 year ago)
- Last Synced: 2023-12-26T07:51:15.404Z (about 1 year ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-2023-clojure, aoc-2023-in-clojure
- Language: Clojure
- Homepage:
- Size: 348 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```