Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```