2024-12-03 23:50:01 -06:00
2024-12-05 14:18:29 -06:00
2024-12-05 23:10:08 -06:00
2024-12-05 14:18:29 -06:00
2024-12-05 14:18:29 -06:00
2024-12-05 14:18:29 -06:00

Advent of Code 2024

This repository contains my solutions for the Advent of Code 2024 challenges.

Languages

I am using C# for this year's challenge again.

Structure

Each day's solution is contained in a separate folder. Each folder contains:

  • A PROBLEM.md file containing the problem description.
  • A INPUT.txt file containing the input for the problem.
  • A dotnet console application containing the solution.
  • An TUnit test project containing unit tests for the solution.

Prequesties

Running the Solutions

To run the solutions, navigate to the solution folder and run the following command:

dotnet run -- <path-to-input-file>

Or for part 2 solutions

dotnet run -- <path-to-input-file> part2

You can also build the projects and run the executables directly.

dotnet build
./bin/Debug/net9.0/<project-name> <path-to-input-file>

Challenges

Day Problem Solution Notes
01 Problem Solution A great way to start!
02 Problem Solution Damn their was an edge case that really bit me...direction change after first pair of levels
03 Problem Solution Thank goodness this wasn't a repeat of day 2.
04 Problem Solution This was fun! Definitely was able to see the growth in my abilities here.
S
Description
No description provided
Readme
164 KiB
Languages
C# 100%