This repository contains my solutions to the Advent of Code puzzles in 2023.
I'm using this as an opportunity to improve my functional programming skills in fp-ts. I've setup a bun environment for running the code and tests in Typescript.
The solutions are in the src
directory. Each day has its own directory, and
there is a solution for each part of the puzzle. The input
directory contains
the puzzle input for each day.
To run the code, you'll need to install the dependencies:
bun install
Then you can run the code for a given day:
bun run src/day_1/part_1.ts
To run the tests:
bun test