Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dlesbre/advent-of-code

Puzzle solutions for advent of code 2022, 2023 and 2024
https://github.com/dlesbre/advent-of-code

advent-of-code advent-of-code-2022 advent-of-code-2023 advent-of-code-2024 ocaml rust

Last synced: 8 days ago
JSON representation

Puzzle solutions for advent of code 2022, 2023 and 2024

Awesome Lists containing this project

README

        

# Advent of Code

Puzzle solutions for [advent of code 2022](https://adventofcode.com/2022/) and [2024](https://adventofcode.com/2024), in OCaml, as well as [advent of code 2023](https://adventofcode.com/2023/), in Rust.
Most run under 1s, all run under 5 minutes.

Building just requires a not too old [ocamlopt](https://v2.ocaml.org/docs/install.html)
or [rustc](https://www.rust-lang.org/tools/install).
I tested it on **OCaml 4.14.0** and **Rust 1.71.1** (but it should work with other versions as well).

To compile and test on a perticular day's puzzle, use
```bash
make YEAR=2022 DAY=03 compile # compiles
make YEAR=2022 DAY=03 # compiles and runs (part 2) on test date
make YEAR=2022 DAY=03 run # compiles and runs on real data
```

**Note:** test and data files are not included in this repository for
[copyright reasons](https://adventofcode.com/about#faq_copying). In order to
run the solution (`make` or `make run`), go to the corresponding AOC puzzle and copy:
- the example input to `//puzzle_test.txt`
- the true input to `//puzzle_data.txt`