Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darylducks17/adventofcode2023
Trying to challenge myself through Advent of Code as I been out of touch with coding ;-;
https://github.com/darylducks17/adventofcode2023
Last synced: 9 days ago
JSON representation
Trying to challenge myself through Advent of Code as I been out of touch with coding ;-;
- Host: GitHub
- URL: https://github.com/darylducks17/adventofcode2023
- Owner: darylducks17
- Created: 2023-12-04T16:14:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-05T12:14:19.000Z (about 1 year ago)
- Last Synced: 2024-11-05T20:18:27.933Z (about 2 months ago)
- Language: Python
- Size: 15.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
## [Day 1 ](https://adventofcode.com/2023/day/1)
### [Part 1](day1/answers.py)
I've completed this correctly albeit the code being inefficient and messy.### [Part 2](day1/answers.py)
I thought the question was asking for the first and last worded digits of the strings, converting them to numbers and then calculating the sum. However, my answer has not picked up all worded digits like twone, oneight etc.## [Day 2](https://adventofcode.com/2023/day/2)
### [Part 1](day2/answers.py)
This was definitely hard, I kind of the got the logic behind it, but I definitely did use Chat GPT and VS Code Debugger to help me put the code together.### [Part 2](day2/answers.py)
I'll probably try this later >.<