-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 🎄 Advent Of Code 2023 | ||
|
||
My solutions to AOC2023. | ||
|
||
## 🥅 Goals | ||
* Pure rust | ||
* No external libraries | ||
* Modular code | ||
* Error handling | ||
* Learn more efficient algorithms/optimizations | ||
* All days combined running in under 1s | ||
|
||
## ☠️ Fails | ||
* **Day 5** - Completed without any external help. I however had to resort to getting a hint on what algorithm to use in order to optimize, as my initial solution ran for +10 minutes. A small win on implementing an algorithm i didn't know before. | ||
|
||
* **Day 8** - Completed, but never finished, as my initial solution ran for hours without ever ending. I had to get a hint on how to solve this, which lead to implementing LCM. |