Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jomaxso/advent-of-code

Welcome to my Advent of Code repository! This repo contains my solutions for the Advent of Code challenges. Advent of Code is an annual event where each day from December 1st to 25th, a new programming puzzle is released. It’s a fun way to improve your coding skills and get into the holiday spirit!
https://github.com/jomaxso/advent-of-code

advent-of-code coding-challenge csharp csharp-code dotnet

Last synced: about 2 months ago
JSON representation

Welcome to my Advent of Code repository! This repo contains my solutions for the Advent of Code challenges. Advent of Code is an annual event where each day from December 1st to 25th, a new programming puzzle is released. It’s a fun way to improve your coding skills and get into the holiday spirit!

Awesome Lists containing this project

README

        

Advent of Code

# Advent of Code Solutions 🎅🎄
Welcome to my Advent of Code repository! This repo contains my solutions for the [Advent of Code](https://adventofcode.com) challenges. Advent of Code is an annual event where each day from December 1st to 25th, a new programming puzzle is released. It’s a fun way to improve your coding skills and get into the holiday spirit!

## Structure
- Each day’s challenge is in its own folder (e.g., Day01, Day02, etc.).
- Each folder contains:
- input.txt: The puzzle input for that day.
- solution.cs: My solution in C#.
- README.md: A brief explanation of the solution and the approach taken.

## How to Run
1. Clone the repository:
```bash
git clone https://github.com/jomaxso/advent-of-code.git
```
2. Navigate to the folder of the day you want to run:
```bash
cd advent-of-code/Day01
```
3. Compile and run the solution:
```bash
csc solution.cs
./solution
```

## Contributions
Feel free to fork this repository and submit pull requests if you have improvements or alternative solutions. Let’s learn and grow together!

## License
This project is licensed under the MIT License - see the LICENSE file for details.