https://github.com/francisfuzz/aoc-2022
https://github.com/francisfuzz/aoc-2022
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/francisfuzz/aoc-2022
- Owner: francisfuzz
- License: mit
- Created: 2022-12-06T03:24:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-25T03:51:58.000Z (over 3 years ago)
- Last Synced: 2026-04-28T10:42:31.793Z (about 1 month ago)
- Language: TypeScript
- Size: 221 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Repo for Advent of Code 2022 in TypeScript
## Instructions
```shell
# Clone the repo and change directory into it
git clone https://github.com/francisfuzz/aoc2022.git && cd aoc2022/
# Install the dependencies
npm install
# Option 1
# Run the build task to compile the TypeScript files, then run the file with `node`
npm run build
node dist/day1.js
# Option 2
# Use `ts-node` directly
npx ts-node day1/day1.ts
```
## Credits
Originally forked from https://github.com/colindembovsky/aoc2021. Moved to its own repository so it is a root repo.