Add README.md

This commit is contained in:
Roland Thomas Jr 2023-07-07 01:27:04 -04:00
parent 6f916c29d1
commit 32b29d18f1
Signed by: roland
GPG Key ID: 7C3C2B085A4C2872
1 changed files with 43 additions and 0 deletions

43
README.md Normal file
View File

@ -0,0 +1,43 @@
# Advent of Code Solutions 🎄
## Description
This repository contains my personal solutions for the Advent of Code puzzles. Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like.
.-"-. .-"-. .-"-. .-"-.
/_:_\_ /_:_\_ /_:_\_ /_:_\_
( `@` ) ( `@` ) ( `@` ) ( `@` )
') (` ') (` ') (` ') (`
/`'--'\ /`'--'\ /`'--'\ /`'--'\
(_)(_) (_) (_)(_) (_) (_)(_) (_) (_)(_) (_)
## Repository Structure
The repository is structured by year, with each day's solution as a standalone Python file.
Advent-of-Code
└───2021
│ │ day1
│ │ day1.py
│ │ day2
│ │ day2.py
│ └─── ...
└───2022
│ day1
│ day1.py
│ day2
│ day2.py
└─── ...
How to Use
1. Clone the repository.
2. Navigate to the desired year and day.
3. Run the solution file.
```sh
$ python3 day1.py
```