This project is a Swift template designed to help you quickly get started with solving Advent of Code (AoC) challenges. Each December, Advent of Code releases a new programming puzzle every day leading up to Christmas. This template provides a clean and simple setup so you can focus on solving the puzzles without spending time on initial project configuration.
- Use This Template: Click the Use this template button at the top of the repository page on GitHub to create your own copy of this project.
- Clone Your Repository:
git clone https://github.com/yourusername/your-repository-name.git cd your-repository-name
- Open in Xcode or use your preferred Swift IDE.
Each day’s solution is organized as an executable target. To solve each day's puzzle:
- Navigate to the target folder for the specific day (e.g., Sources/Day01).
- Open Day01.swift and update the code with your solution.
- Replace the contents of input.txt with the day’s puzzle input.
- Run the target for the selected day.
Contributions are welcome! If you have suggestions, improvements, or find any issues, feel free to open a pull request or file an issue.
This project is licensed under the MIT License. See LICENSE for details.
Thanks to Advent of Code for the challenges and to ChatGPT for writing this readme.