Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/obay-ismaeel/advent-of-code-problems
This project contains my solutions for the problems featured on the Advent of Code website using C# language
https://github.com/obay-ismaeel/advent-of-code-problems
advent-of-code csharp problem-solving
Last synced: about 1 month ago
JSON representation
This project contains my solutions for the problems featured on the Advent of Code website using C# language
- Host: GitHub
- URL: https://github.com/obay-ismaeel/advent-of-code-problems
- Owner: obay-ismaeel
- License: mit
- Created: 2024-06-05T19:18:24.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-03T09:58:03.000Z (6 months ago)
- Last Synced: 2024-07-04T21:40:27.327Z (6 months ago)
- Topics: advent-of-code, csharp, problem-solving
- Language: C#
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Advent of Code 2023 Solutions in C#
Welcome to my repository for the [Advent of Code 2023](https://adventofcode.com/2023) solutions. Here, I have documented my solutions for each day's challenge, all implemented in C#.
## Introduction
Advent of Code is an annual series of holiday-themed puzzles that are released daily from December 1st to December 25th. These puzzles are great for honing problem-solving skills and practicing programming.
In this repository, you will find my solutions for the 2023 problem set, all written in C#. Each solution is organized by day and includes both the problem statement and my approach to solving it.
## Structure
The repository is structured as follows:
Each day's folder contains:
- `program.cs`: The C# solution for the day's puzzle.
- `input.txt`: The input text of the day's problem.## How to Run
To run any of the solutions, follow these steps:
1. **Clone the Repository:**
```bash
git clone //github.com/obay-ismaeel/advent-of-code-problems
cd advent-of-code-problems
```2. **Navigate to the Day's Folder:**
```bash
cd ProblemXX
```3. **Compile and Run to Get the Solutions:**
```bash
dotnet run
```## Contributing
Contributions are welcome! If you have a more efficient approach to solving any of the puzzles or find any issues with the existing solutions, feel free to fork the repository and submit a pull request.
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.