My solutions for the AoC 2021 challenges, written in Python 🐍.
🎄 🎄 🎄
| Day | Challenge | Solution |
|---|---|---|
| 1 | Sonar Sweep | 🐍 day01.py |
| 2 | Dive! | 🐍 day02.py |
| 3 | Binary Diagnostic | 🐍 day03.py |
| 4 | Giant Squid | 🐍 day04.py |
| 5 | Hydrothermal Venture | 🐍 day05.py |
| 6 | Lanternfish | 🐍 day06.py |
| 7 | The Treachery of Whales | 🐍 day07.py |
| 8 | Seven Segment Search | 🐍 day08.py |
| 9 | Smoke Basin | 🐍 day09.py |
| 10 | Syntax Scoring | 🐍 day10.py |
| 11 | Dumbo Octopus | 🐍 day11.py |
| 12 | Passage Pathing | 🐍 day12.py |
| 13 | Transparent Origami | 🐍 day13.py |
| 14 | Extended Polymerization | 🐍 day14.py |
| 15 | Chiton | 🐍 day15.py |
| 16 | Packet Decoder | 🐍 day16.py |
| 17 | Trick Shot | 🐍 day17.py |
| 18 | Snailfish | 🐍 day18.py |
| 19 | Beacon Scanner | 🐍 day19.py |
| 20 | Trench Map | 🐍 day20.py |
| 21 | Dirac Dice | 🐍 day21.py |
| 22 | Reactor Reboot | 🐍 day22.py |
| 23 | Amphipod | 🐍 day23.py |
| 24 | Arithmetic Logic Unit | 🐍 day24.py |
| 25 | Sea Cucumber | 🐍 day25.py |
Package requirements are specified in the requirements.txt file.
pip install -r requirements.txtYou should install the pre-commit hooks that format the code before commit
pre-commit install