https://github.com/renormalize/ocaml-aoc-2023
Advent Of Code 2023's solutions in OCaml
https://github.com/renormalize/ocaml-aoc-2023
advent-of-code advent-of-code-2023 advent-of-code-2023-ocaml advent-of-code-ocaml
Last synced: 4 months ago
JSON representation
Advent Of Code 2023's solutions in OCaml
- Host: GitHub
- URL: https://github.com/renormalize/ocaml-aoc-2023
- Owner: renormalize
- License: mit
- Created: 2023-12-01T19:25:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-16T21:22:58.000Z (over 1 year ago)
- Last Synced: 2024-04-17T21:54:49.048Z (about 1 year ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-2023-ocaml, advent-of-code-ocaml
- Language: OCaml
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023 in OCaml
Each day's solution functions are in its corresponding directory.
The bin directory contains `dayXbin.ml` files which invoke the solution functions.To run a particular day's solutions, run:
```bash
dune exec day_integer
```For example, to run day 1's solutions, run:
```bash
dune exec 1
```