An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Advent of Code 2022

Advent of Code 2022 solutions with TypeScript.

[![Code Style: Google](https://img.shields.io/badge/code%20style-google-blueviolet.svg)](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/)