https://github.com/colindembovsky/aoc-2025
https://github.com/colindembovsky/aoc-2025
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/colindembovsky/aoc-2025
- Owner: colindembovsky
- Created: 2025-12-06T00:31:56.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-12-12T18:22:52.000Z (6 months ago)
- Last Synced: 2025-12-14T09:10:56.225Z (6 months ago)
- Language: TypeScript
- Size: 103 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Repo for Advent of Code 2025 in TypeScript
## Structure
Each day has a folder (`day01`, `day02` etc.) with at least 3 files:
- `easy-input.txt` for the sample data
- `input.txt` for the real data
- `program.ts` for the code
## Run the day
Edit `program.ts` for the day, pasting in the sample and real data. Then simply run:
`DAY=x yarn run go` to execute the solution for day x.
## Setup for a new year
- Edit the files in `day00` which is the template
- remove the old days from previous year (if any)
- run the `setup.sh` script (changing the day range if needed) to setup the year
## Debugging
Set a breakpoint in the `program.ts` file for the day you're working on and fire up the VSCode debugger with the profile `Debug Program`.