Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.44 KB

README.md

File metadata and controls

50 lines (31 loc) · 1.44 KB

AdventOfCode

Welcome to my Advent of Code (AoC) solutions repository!

About

This repository contains my solutions to the Advent of Code challenges. Advent of Code is an annual event in December, featuring daily programming puzzles that are great for learning and practicing problem-solving skills in various programming languages.

Repository Structure

The repository is organized by year, with each year's folder containing the solutions for that specific year's challenges. Inside each folder, you will find individual files corresponding to each day's problem.

Example structure:

AdventOfCode/
├── 2015/
│   ├── 1.c
│   └── ...
├── 2016/
│   ├── ...
└── ...

Languages Used

  • C: The solutions are primarily written in C.

How to Use

To run a specific solution, navigate to the appropriate year's folder and compile the C file using a C compiler. For example:

gcc -o day1 1.c
./day1

Progress

I am working through the challenges in my own time and plan to complete all of them. The repository will be updated regularly as I solve more problems.

Contributions

Feel free to explore the repository and use the solutions as a reference. If you find any issues or have suggestions, please open an issue or submit a pull request!

License

This repository is licensed under the MIT License. Feel free to use the code for your own projects.

Happy Coding!