https://github.com/fildon/adventofcode2024
https://github.com/fildon/adventofcode2024
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/fildon/adventofcode2024
- Owner: fildon
- Created: 2024-12-01T21:57:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-17T16:11:40.000Z (over 1 year ago)
- Last Synced: 2025-02-05T07:11:27.620Z (over 1 year ago)
- Language: TypeScript
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent Of Code 2023
My solutions to the puzzles of [Advent of Code 2024](https://adventofcode.com/2024)
This project was written with [bun.sh version 1.1.38](https://bun.sh/)
Each day is a directory. Each directory contains a TS file which exports a pair of pure functions, one to solve part 1 and another to solve part 2.
Each directory also includes a test file which asserts the correctness of the solutions.
You can run all tests from the root directory by running the following command:
```shell
bun test
```