Skip to content

novakklemen/AOC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code 2024 - C# Solutions

Welcome to my solutions repository for the Advent of Code 2024 challenges! This repository contains my implementations in C#, structured for clarity. Each day's puzzle is solved in two parts, and my solutions follow a consistent format for easy navigation.

Christmas Tree

Repository Structure

2024/
│
├── DecNN/                 # Folder for each day's solutions (e.g., Dec01, Dec02, ...)
│   ├── Part1.cs           # Solution for Part 1 of the day's puzzle
│   ├── Part2.cs           # Solution for Part 2 of the day's puzzle
│   ├── input.txt          # Puzzle input for the day
│
├── README.md              # This file
└── .gitignore             # Standard Git ignore file
  • DecNN: Each day's folder (e.g., Dec01, Dec02, etc.) contains the solutions for that day.
  • Part1.cs and Part2.cs: Each part has its own C# file, containing the logic encapsulated within the Execute method.
  • input.txt: The input provided by Advent of Code for the day's challenge.

Acknowledgments

A huge thanks to Eric Wastl for creating the Advent of Code and fostering such an engaging community. Check out the Advent of Code subreddit for discussions and insights.

License

This repository is licensed under the MIT License. See LICENSE for details.

About

Advent of Code solutions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages