https://github.com/fildon/adventofcode2023
https://github.com/fildon/adventofcode2023
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fildon/adventofcode2023
- Owner: fildon
- Created: 2023-12-01T21:14:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-16T12:43:59.000Z (over 2 years ago)
- Last Synced: 2025-05-29T20:11:46.042Z (about 1 year ago)
- Language: JavaScript
- Size: 128 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 2023](https://adventofcode.com/2023)
Solutions are written in JavaScript and run with Node. I used Node `v21.4.0`. Solutions might still work when run on other versions of Node, but I cannot guarantee this.
Each day is a directory. Each directory contains an `index.mjs` which exports a pair of pure functions, one to solve part 1 and another to solve part 2.
Each directory also includes a `test.mjs` which can be run with Node to assert the correctness of the solutions.
You can run all tests from the root directory by running the following command:
```shell
node --test **/test.mjs
```