https://github.com/maxroecker/advent-of-code-2022
Advent of Code 2022 solutions with TypeScript.
https://github.com/maxroecker/advent-of-code-2022
Last synced: 2 months ago
JSON representation
Advent of Code 2022 solutions with TypeScript.
- Host: GitHub
- URL: https://github.com/maxroecker/advent-of-code-2022
- Owner: MaxRoecker
- License: mit
- Created: 2022-12-16T02:31:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-27T16:43:27.000Z (over 3 years ago)
- Last Synced: 2026-01-03T10:29:58.678Z (5 months ago)
- Language: TypeScript
- Size: 107 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022
Advent of Code 2022 solutions with TypeScript.
[](https://github.com/google/gts)
## Getting started
The easiest way to get started is to run:
```sh
npm install
```
Each day challenge is available at
[Advent of Code 2022](https://adventofcode.com/2022). Copies of the inputs are
available on `inputs` directory.
To test the code for all the available days,
run:
```sh
npm run test
```
## Project status
The project status is summarized on the table below. The ✔ indicates that the
code for each day challenge is available with the correct solution.
| Day | Part 1 | Part 2 | Notes |
| :-: | :----: | :----: | :---- |
| 01 | ✔ | ✔ | |
| 02 | ✔ | ✔ | |
| 03 | ✔ | ✔ | |
| 04 | ✔ | ✔ | |
| 05 | ✔ | ✔ | |
| 06 | ✔ | ✔ | |
| 07 | ✔ | ✔ | |
| 08 | ✔ | ✔ | |
| 09 | ✖ | ✖ | |
| 10 | ✖ | ✖ | |
| 11 | ✖ | ✖ | |
| 12 | ✖ | ✖ | |
| 13 | ✖ | ✖ | |
| 14 | ✖ | ✖ | |
| 15 | ✖ | ✖ | |
| 16 | ✖ | ✖ | |
| 17 | ✖ | ✖ | |
| 18 | ✖ | ✖ | |
| 19 | ✖ | ✖ | |
| 20 | ✖ | ✖ | |
| 21 | ✖ | ✖ | |
| 22 | ✖ | ✖ | |
| 23 | ✖ | ✖ | |
| 24 | ✖ | ✖ | |
| 25 | ✖ | ✖ | |
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
## License
[MIT](https://maxroecker.mit-license.org/)