https://github.com/extrabb/aoc-2022
https://github.com/extrabb/aoc-2022
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/extrabb/aoc-2022
- Owner: ExtraBB
- License: mit
- Created: 2022-12-01T08:41:53.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-22T09:42:37.000Z (over 1 year ago)
- Last Synced: 2025-03-19T22:16:26.675Z (about 1 month ago)
- Language: C#
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# AOC-2022
This repository contains my solutions for Advent of Code 2022.
## Running the solutions
The solutions are implemented as a class library. The only way to run them is via the xUnit test project:```
dotnet test aoc-2022-test
```## Benchmarking the solutions
The solutions can be benchmarked using the `aoc-2022-benchmark` project:```
dotnet test aoc-2022-benchmark
```## Input data
The input data is stored in the `aoc-2022-data` project, which is referenced by both the `aoc-2022-test` and `aoc-2022-benchmark` project.