Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kavun/advent-of-code-2024
Advent of Code 2024
https://github.com/kavun/advent-of-code-2024
advent-of-code aoc2024
Last synced: 27 days ago
JSON representation
Advent of Code 2024
- Host: GitHub
- URL: https://github.com/kavun/advent-of-code-2024
- Owner: kavun
- License: mit
- Created: 2024-12-01T19:40:03.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-10T04:54:27.000Z (about 1 month ago)
- Last Synced: 2024-12-10T05:27:25.546Z (about 1 month ago)
- Topics: advent-of-code, aoc2024
- Language: C#
- Homepage: https://adventofcode.com/2024
- Size: 48.8 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 2024
[Advent of Code 2024](https://adventofcode.com/2024) solutions in C#.
![GitHub branch check runs](https://img.shields.io/github/check-runs/kavun/advent-of-code-2024/main)
![GitHub License](https://img.shields.io/github/license/kavun/advent-of-code-2024)## Installation
Requires
- [.NET 9](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
- [PowerShell](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell)## Usage
### New Day
This will create the `IDay` file, the `*.txt` input file,
and the unit test file for a given day.```powershell
./aoc.ps1 new 25
```### Run
```powershell
./aoc.ps1 run
```### Test
```powershell
./aoc.ps1 test
```