Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blu3r4y/adventofcode2019
My solutions for the Advent of Code 2019 challenges, written in Python
https://github.com/blu3r4y/adventofcode2019
advent-of-code advent-of-code-2019
Last synced: 20 days ago
JSON representation
My solutions for the Advent of Code 2019 challenges, written in Python
- Host: GitHub
- URL: https://github.com/blu3r4y/adventofcode2019
- Owner: blu3r4y
- License: mit
- Created: 2019-12-01T09:31:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-26T10:36:22.000Z (about 1 year ago)
- Last Synced: 2023-12-26T11:38:54.525Z (about 1 year ago)
- Topics: advent-of-code, advent-of-code-2019
- Language: Python
- Homepage: https://adventofcode.com/2019
- Size: 66.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Advent of Code 2019
My solutions for the [AoC 2019](https://adventofcode.com/2019) challenges, written in Python.
:christmas_tree: :christmas_tree: :christmas_tree:
## Challenges
- **[Day 1: The Tyranny of the Rocket Equation](https://adventofcode.com/2019/day/1)** - [Python Solution](src/day1.py)
- **[Day 2: 1202 Program Alarm](https://adventofcode.com/2019/day/2)** - [Python Solution](src/day2.py)
- **[Day 3: Crossed Wires](https://adventofcode.com/2019/day/3)** - [Python Solution](src/day3.py)
- **[Day 4: Secure Container](https://adventofcode.com/2019/day/4)** - [Python Solution](src/day4.py)
- **[Day 5: Sunny with a Chance of Asteroids](https://adventofcode.com/2019/day/5)** - [Python Solution](src/day5.py)
- **[Day 6: Universal Orbit Map](https://adventofcode.com/2019/day/6)** - [Python Solution](src/day6.py)
- **[Day 7: Amplification Circuit](https://adventofcode.com/2019/day/7)** - [Python Solution](src/day7.py)
- **[Day 8: Space Image Format](https://adventofcode.com/2019/day/8)** - [Python Solution](src/day8.py)
- **[Day 9: Sensor Boost](https://adventofcode.com/2019/day/9)** - [Python Solution](src/day9.py)
- **[Day 10: Monitoring Station](https://adventofcode.com/2019/day/10)** - [Python Solution](src/day10.py)
- **[Day 11: Space Police](https://adventofcode.com/2019/day/11)** - [Python Solution](src/day11.py)
- **[Day 12: The N-Body Problem](https://adventofcode.com/2019/day/12)** - [Python Solution](src/day12.py)
- **[Day 13: Care Package](https://adventofcode.com/2019/day/13)** - [Python Solution](src/day13.py)
- **[Day 14: Space Stoichiometry](https://adventofcode.com/2019/day/14)** - [Python Solution](src/day14.py)
- **[Day 15: Oxygen System](https://adventofcode.com/2019/day/15)** - [Python Solution](src/day15.py)
- **[Day 16: Flawed Frequency Transmission](https://adventofcode.com/2019/day/16)** - [Python Solution](src/day16.py)
- **[Day 17: Set And Forget](https://adventofcode.com/2019/day/17)** - [Python Solution](src/day17.py)
- **[Day 18: Many-Worlds Interpretation](https://adventofcode.com/2019/day/18)**
- **[Day 19: Tractor Beam](https://adventofcode.com/2019/day/19)** - [Python Solution](src/day19.py)## Requirements
### Python 3.7
Package requirements are specified in the [requirements.txt](requirements.txt) file.
```
pip3 install -r requirements.txt
```