Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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!
- Host: GitHub
- URL: https://github.com/jomaxso/advent-of-code
- Owner: jomaxso
- License: mit
- Created: 2024-11-25T08:44:53.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-25T09:16:32.000Z (about 2 months ago)
- Last Synced: 2024-11-25T09:35:03.928Z (about 2 months ago)
- Topics: advent-of-code, coding-challenge, csharp, csharp-code, dotnet
- Homepage: https://adventofcode.com/
- Size: 0 Bytes
- 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 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.