https://github.com/seapagan/aoc-2024
Advent of Code 2024, Python
https://github.com/seapagan/aoc-2024
aoc-2024 aoc-2024-in-python
Last synced: 3 months ago
JSON representation
Advent of Code 2024, Python
- Host: GitHub
- URL: https://github.com/seapagan/aoc-2024
- Owner: seapagan
- Created: 2024-12-04T10:17:19.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-17T09:38:50.000Z (7 months ago)
- Last Synced: 2025-03-28T00:55:16.445Z (3 months ago)
- Topics: aoc-2024, aoc-2024-in-python
- Language: Python
- Homepage:
- Size: 180 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2024 Solutions
These are my solutions to the [Advent of Code
2024](https://adventofcode.com/2024) puzzles.I recommend every coder tries to participate in this event (even when it's #out
of season as the site stays up all year). It's a great way to learn new things
and have fun. I'm not a competitive programmer, but I enjoy solving these
puzzles. I'm not trying to solve them as fast as I can, but I'm trying to solve
them as clean as I can. I'm also trying to learn new things while solving them,
which I definitely have.Solutions are in Python.
> [!NOTE]
>
> These solutions may use global variables and other bad practices I
> wouldn't use in production code, but that works for AOC :grin: I have tried to
> keep them clean and as efficient as I can with my current low knowledge of
> standard algorithms. Maybe I'll revisit them in the future to improve them.- [Day 1: Historian Hysteria](01/main.py)
- [Day 2: Red-Nosed Reports](02/main.py)
- [Day 3: Mull It Over](03/main.py)
- [Day 4: Ceres Search](04/main.py)
- [Day 5: Print Queue](05/main.py)
- [Day 6: Guard Gallivant](06/main.py)
- [Day 7: Bridge Repair](07/main.py)
- [Day 8: Resonant Collinearity](08/main.py)
- [Day 9: Disk Fragmenter](09/main.py)
- [Day 10: Hoof It](10/main.py)
- [Day 11: Plutonian Pebbles](11/main.py)
- [Day 12: Garden Groups](12/main.py)
- [Day 13: Claw Contraption](13/main.py)
- [Day 14: Restroom Redoubt](14/main.py)
- [Day 15: Warehouse Woes](15/main.py)
- [Day 16: Reindeer Maze](16/main.py)
- [Day 17: Chronospatial Computer](17/main.py)