https://github.com/thomasgesseyjones/advent_of_code_2023
My solutions to Advent of Code 2023 in Python3.8
https://github.com/thomasgesseyjones/advent_of_code_2023
advent-of-code advent-of-code-2023 python3
Last synced: 2 months ago
JSON representation
My solutions to Advent of Code 2023 in Python3.8
- Host: GitHub
- URL: https://github.com/thomasgesseyjones/advent_of_code_2023
- Owner: ThomasGesseyJones
- Created: 2023-12-26T16:28:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-26T16:51:38.000Z (over 1 year ago)
- Last Synced: 2025-02-16T21:44:58.613Z (5 months ago)
- Topics: advent-of-code, advent-of-code-2023, python3
- Language: Python
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent Of Code 2023 :christmas_tree:
My solutions to [Advent of Code 2023](https://adventofcode.com/2023), written in Python3.8.
Stored here, as a backup and so that I can find them easily in the future!
Merry Christmas :christmas_tree:## Notes on Running To Future Self
The problem inputs and example inputs have been removed from the repository to respect the [wishes](https://adventofcode.com/2023/about) of the makers of Advent of Code.
Hence, the code won't run as is.
To get a solution to run, you will need to download that day's input named `input.txt` from the Advent of Code website and place it in the respective folder.Some solutions make use of packages that are not part of the standard Python library.
Installing these will thus be required for some day's solutions to run:
* numpy
* tqdm
* networkx
* matplotlib