This repository contains my solutions for Advent of Code 2023, a series of programming challenges released daily in December. Each day, a new problem is unlocked, and participants can solve it using any programming language of their choice.
Advent of Code is an annual event where participants solve coding puzzles and challenges. It's a great opportunity to improve your programming skills, explore new language features, and engage with a global community of developers. For more information and to participate, visit the Advent of Code website.
- Each day's solution is organized in its own directory, named
day-01
,day-02
, and so on. - The solutions are implemented in Python.
- Additional explanations or insights may be provided in each day's directory if necessary.
The repository structure is as follows:
.
├── day-01
│ ├── input.txt
│ ├── solution.py
│ └── README.md
├── day-02
│ ├── input.txt
│ ├── solution.py
│ └── README.md
├── ...
└── README.md
To run the solutions:
- Navigate to the specific day's directory, e.g.,
day-01
. - Run the Python script, e.g.,
python solution.py
. - Input data for the day is stored in
input.txt
.
Feel free to adapt the code to your needs, experiment with different approaches, and share your improvements!
If you'd like to contribute or suggest improvements to the solutions, feel free to open an issue or submit a pull request. Your contributions are welcome!
This project is licensed under the MIT License - see the LICENSE file for details.
You can customize this template based on your preferences and add more details or sections if needed. Don't forget to update the table of contents as you add more days and solutions. Good luck with your Advent of Code 2023