advent-of-code/README.md

15 lines
615 B
Markdown
Raw Permalink Normal View History

2025-03-21 16:04:07 -04:00
# Python based Advent of Code
2025-03-21 16:22:25 -04:00
## Purpose
2025-03-21 16:04:07 -04:00
This project is for me to mess around with Python packaging concepts/repo format as well as try to store my Advent of Code solutions somewhat efficiently.
[This](https://github.com/wilhelmagren/advent-of-code) is the more elegant inspiration for this project.
2025-03-21 16:22:25 -04:00
## Directory Structure
2025-03-21 16:14:07 -04:00
* adventofcode/
2025-03-21 16:22:25 -04:00
- contains the supporting libraries to make my solutions go
2025-03-21 16:14:07 -04:00
* solutions/
2025-03-21 16:22:25 -04:00
- contains the Python solutions to problems, sorted by year/day
2025-03-21 16:14:07 -04:00
* data/
2025-03-21 16:22:25 -04:00
- contains the personalized input data I was given from the website to solve, also sorted by year/day