https://github.com/mc-cat-tty/adventofcode2020
Advent of Code 2020 Python solutions
https://github.com/mc-cat-tty/adventofcode2020
advent-of-code advent-of-code-2020 christmas coding-challenge puzzles python-script python3
Last synced: 8 months ago
JSON representation
Advent of Code 2020 Python solutions
- Host: GitHub
- URL: https://github.com/mc-cat-tty/adventofcode2020
- Owner: mc-cat-tty
- Created: 2020-12-10T07:06:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-25T19:42:51.000Z (about 5 years ago)
- Last Synced: 2025-04-02T14:52:16.835Z (11 months ago)
- Topics: advent-of-code, advent-of-code-2020, christmas, coding-challenge, puzzles, python-script, python3
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AdventOfCode2020
Advent of Code 2020 Python solutions :christmas_tree: :santa:
## Notes
To speed development up I tried to apply TDD - Test Driven Development -
Keep 2 windows opened side by side (e.g.):
```
vim day3_1.py
```
and
```
watch -n 1 -d 'cat input3 | python3 day3_1.py'
```
This way, `watch` will keep the script results updated (remember to save with `ESC :w` to apply changes) and you'll notice when the algorithm is right
Tip: try your solution against the examples given in the puzzle