Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 621 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 621 Bytes

Advent of Code - Python Solutions

This repository contains my Python solutions for Advent of Code challenges.

Requirements

  • Python 3.11

Project Structure

.
├── day1/ # Day 1
│ ├── main.py # Solution for Day 1
│ └── input.txt # Input file for Day 1
├── day2/ # Day 2
│ ├── main.py # Solution for Day 2
│ └── input.txt # Input file for Day 2
├── ... # Solutions for subsequent days

Usage

Run each day's solution:

python day1/main.py
python day2/main.py
# ...

License

This project is licensed under the MIT License.

Happy coding!