Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diagmatrix/advent-of-code-23
My solutions to the advent of code 2023 challenge.
https://github.com/diagmatrix/advent-of-code-23
Last synced: 9 days ago
JSON representation
My solutions to the advent of code 2023 challenge.
- Host: GitHub
- URL: https://github.com/diagmatrix/advent-of-code-23
- Owner: diagmatrix
- License: unlicense
- Created: 2023-12-04T15:46:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-11T15:41:20.000Z (about 1 year ago)
- Last Synced: 2024-11-15T18:06:35.637Z (2 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent-of-code-23
My solutions to the advent of code 2023 challenge.| Day | Solution | Comment |
|:---:|--------------------------------|------------------------------------------------------------------------------------------------------|
| [1](https://adventofcode.com/2023/day/1) | [day 1 solution](day1/day1.py) | It was tricky to realize that the words had to be parsed secuentially to transform them into digits. |
| [2](https://adventofcode.com/2023/day/2) | [day 2 solution](day2/day2.py) | |
| [3](https://adventofcode.com/2023/day/3) | [day 3 solution](day3/day3.py) | Part two was significantly easier to solve once I remembered `dict` exists. |
| [4](https://adventofcode.com/2023/day/4) | [day 4 solution](day4/day4.py) | Part two maybe is not the most optimal way to do it. |
| [5](https://adventofcode.com/2023/day/5) | [day 5 solution](day5/day5.py) | |