├── 2022 ├── day-01.py ├── day-02.py ├── day-03.py ├── day-04.py ├── day-05.py ├── day-06.py ├── day-07.py ├── day-08.py ├── day-09.py ├── day-10.py ├── day-11.py ├── day-12.py ├── day-14.py ├── one-line-solutions.py └── the-beast.py ├── 2023 ├── day-01.py ├── day-02.py ├── day-03.py ├── day-04.py ├── day-05.py ├── day-06.py ├── day-07.py ├── day-08.py ├── day-09.py ├── day-10.py ├── day-11.py ├── day-12.py ├── day-13.py ├── day-14.py ├── day-15.py ├── day-16.py └── the-basilisk.py ├── .gitignore ├── README.md ├── images ├── 2022-day-07-meme.png ├── 2022-day-10-beast-length.png ├── 2023-day-03-regex-meme.png ├── 2023-day-05-walrus-meme.png ├── 2023-day-06-the-basilisk-viz.png ├── 2023-day-07-the-basilisk-viz.png ├── 2023-day-08-the-basilisk-viz.png ├── 2023-day-09-the-basilisk-viz.png ├── 2023-day-16-the-basilisk-viz.png └── why-use-long-code-meme.jpg ├── requirements.txt └── tools ├── create-blank-solution.py ├── create-rainbow-line-svg.py └── import-input.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/.gitignore -------------------------------------------------------------------------------- /2022/day-01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-01.py -------------------------------------------------------------------------------- /2022/day-02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-02.py -------------------------------------------------------------------------------- /2022/day-03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-03.py -------------------------------------------------------------------------------- /2022/day-04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-04.py -------------------------------------------------------------------------------- /2022/day-05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-05.py -------------------------------------------------------------------------------- /2022/day-06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-06.py -------------------------------------------------------------------------------- /2022/day-07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-07.py -------------------------------------------------------------------------------- /2022/day-08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-08.py -------------------------------------------------------------------------------- /2022/day-09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-09.py -------------------------------------------------------------------------------- /2022/day-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-10.py -------------------------------------------------------------------------------- /2022/day-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-11.py -------------------------------------------------------------------------------- /2022/day-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-12.py -------------------------------------------------------------------------------- /2022/day-14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/day-14.py -------------------------------------------------------------------------------- /2022/one-line-solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/one-line-solutions.py -------------------------------------------------------------------------------- /2022/the-beast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2022/the-beast.py -------------------------------------------------------------------------------- /2023/day-01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-01.py -------------------------------------------------------------------------------- /2023/day-02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-02.py -------------------------------------------------------------------------------- /2023/day-03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-03.py -------------------------------------------------------------------------------- /2023/day-04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-04.py -------------------------------------------------------------------------------- /2023/day-05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-05.py -------------------------------------------------------------------------------- /2023/day-06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-06.py -------------------------------------------------------------------------------- /2023/day-07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-07.py -------------------------------------------------------------------------------- /2023/day-08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-08.py -------------------------------------------------------------------------------- /2023/day-09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-09.py -------------------------------------------------------------------------------- /2023/day-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-10.py -------------------------------------------------------------------------------- /2023/day-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-11.py -------------------------------------------------------------------------------- /2023/day-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-12.py -------------------------------------------------------------------------------- /2023/day-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-13.py -------------------------------------------------------------------------------- /2023/day-14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-14.py -------------------------------------------------------------------------------- /2023/day-15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-15.py -------------------------------------------------------------------------------- /2023/day-16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/day-16.py -------------------------------------------------------------------------------- /2023/the-basilisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/2023/the-basilisk.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/README.md -------------------------------------------------------------------------------- /images/2022-day-07-meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2022-day-07-meme.png -------------------------------------------------------------------------------- /images/2022-day-10-beast-length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2022-day-10-beast-length.png -------------------------------------------------------------------------------- /images/2023-day-03-regex-meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2023-day-03-regex-meme.png -------------------------------------------------------------------------------- /images/2023-day-05-walrus-meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2023-day-05-walrus-meme.png -------------------------------------------------------------------------------- /images/2023-day-06-the-basilisk-viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2023-day-06-the-basilisk-viz.png -------------------------------------------------------------------------------- /images/2023-day-07-the-basilisk-viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2023-day-07-the-basilisk-viz.png -------------------------------------------------------------------------------- /images/2023-day-08-the-basilisk-viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2023-day-08-the-basilisk-viz.png -------------------------------------------------------------------------------- /images/2023-day-09-the-basilisk-viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2023-day-09-the-basilisk-viz.png -------------------------------------------------------------------------------- /images/2023-day-16-the-basilisk-viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/2023-day-16-the-basilisk-viz.png -------------------------------------------------------------------------------- /images/why-use-long-code-meme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/images/why-use-long-code-meme.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/create-blank-solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/tools/create-blank-solution.py -------------------------------------------------------------------------------- /tools/create-rainbow-line-svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/tools/create-rainbow-line-svg.py -------------------------------------------------------------------------------- /tools/import-input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savbell/advent-of-code-one-liners/HEAD/tools/import-input.py --------------------------------------------------------------------------------