https://github.com/cricksmaidiene/advent-of-code-2022
🎄 A repository to share advent of code 2022 solutions
https://github.com/cricksmaidiene/advent-of-code-2022
advent-of-code advent-of-code-2022 jupyter-notebook python310
Last synced: 3 months ago
JSON representation
🎄 A repository to share advent of code 2022 solutions
- Host: GitHub
- URL: https://github.com/cricksmaidiene/advent-of-code-2022
- Owner: cricksmaidiene
- License: bsd-3-clause
- Created: 2022-12-04T06:39:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-26T14:08:45.000Z (over 2 years ago)
- Last Synced: 2025-01-28T00:15:35.423Z (4 months ago)
- Topics: advent-of-code, advent-of-code-2022, jupyter-notebook, python310
- Language: Jupyter Notebook
- Homepage:
- Size: 80.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022 🎄
## About
Hello world! This repository contains solutions to [`adventofcode`](https://adventofcode.com/) puzzles for the year 2022.
* My solutions will primarily be in the [Python](https://python.org) programming language, but I am intending to add solutions in some auxiliary languages that I've been looking to learn as well.
* I'll be using [`Python 3.10`](https://docs.python.org/3.10/whatsnew/3.10.html)
* My submissions maybe erratic. I will also not submit solutions until at least 24 hours after the problem has released.
* I am also not intending to use 3rd party libraries and using the standard library only.
* Feedback on my solutions are welcome and appreciated. See [Contributing](CONTRIBUTING.md) for more details.## Index
| 🎑 Day | 🎅🏽 Title | 🐍 Python |
| --- | ----- | -------- |
| 01 | [Calorie Counting](https://adventofcode.com/2022/day/1) | [01 Sol](aoc/01/2022_01.py) |
| 02 | [Rock Paper Scissors](https://adventofcode.com/2022/day/2) | [02 Sol](aoc/02/2022_02.py) |
| 03 | [Rucksack Reorganization](https://adventofcode.com/2022/day/3) | [03 Sol](aoc/03/2022_03.py) |
| 04 | [Camp Cleanup](https://adventofcode.com/2022/day/4) | [04 Sol](aoc/04/2022_04.py) |
| 05 | [Supply Stacks](https://adventofcode.com/2022/day/5) | [05 Sol](aoc/05/2022_05.py) |
| 06 | [Tuning Trouble](https://adventofcode.com/2022/day/6) | [06 Sol](aoc/06/2022_06.py) |
| 07 | [No Space Left on Device](https://adventofcode.com/2022/day/7) | [07 Sol](aoc/07/2022_07.py) |
| 08 | [Treetop Tree House](https://adventofcode.com/2022/day/8) | [08 Sol](aoc/08/2022_08.py) |
| 09 | [Rope Bridge](https://adventofcode.com/2022/day/9) | [09 Sol](aoc/09/2022_09.py) |
| 10 | [Cathode-Ray Tube](https://adventofcode.com/2022/day/10) | [10 Sol](aoc/10/2022_10.py) |
| 11 | [Monkey in the Middle](https://adventofcode.com/2022/day/11) | [11 Sol](aoc/11/2022_11.py) |
| 12 | [Hill Climbing Algorithm](https://adventofcode.com/2022/day/12) | [12 Sol](aoc/12/2022_12.py) |
| 13 | [Distress Signal](https://adventofcode.com/2022/day/13) | [13 Sol](aoc/13/2022_13.py) |
| 14 | [Regolith Reservoir](https://adventofcode.com/2022/day/14) | [14 Sol](aoc/14/2022_14.py) |
| 15 | [Beacon Exclusion Zone](https://adventofcode.com/2022/day/15) | [15 Sol](aoc/15/2022_15.py) |
| 16 | [Proboscidea Volcanium](https://adventofcode.com/2022/day/16) | [16 Sol](aoc/16/2022_16.py) |
| 17 | [Pyroclastic Flow](https://adventofcode.com/2022/day/17) | [17 Sol](aoc/17/2022_17.py) |
| 18 | [Boiling Boulders](https://adventofcode.com/2022/day/18) | [18 Sol](aoc/18/2022_18.py) |
| 19 | [Not Enough Minerals](https://adventofcode.com/2022/day/19) | [19 Sol](aoc/19/2022_19.py) |
| 20 | [Grove Positioning System](https://adventofcode.com/2022/day/20) | [20 Sol](aoc/20/2022_20.py) |
| 21 | [Monkey Math](https://adventofcode.com/2022/day/21) | [21 Sol](aoc/21/2022_21.py) |
| 22 | [Monkey Map](https://adventofcode.com/2022/day/22) | [22 Sol](aoc/22/2022_22.py) |
| 23 | [Unstable Diffusion](https://adventofcode.com/2022/day/23) | [23 Sol](aoc/23/2022_23.py) |
| 24 | [Blizzard Basin](https://adventofcode.com/2022/day/24) | [24 Sol](aoc/24/2022_24.py) |
| 25 | [Full of Hot Air](https://adventofcode.com/2022/day/25) | [25 Sol](aoc/25/2022_25.py) |