Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/braheezy/advent-of-code
🎄 Coding for the holidays 🎄
https://github.com/braheezy/advent-of-code
advent-of-code-2024 go
Last synced: 27 days ago
JSON representation
🎄 Coding for the holidays 🎄
- Host: GitHub
- URL: https://github.com/braheezy/advent-of-code
- Owner: braheezy
- Created: 2024-12-01T07:08:49.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-19T18:54:38.000Z (about 1 month ago)
- Last Synced: 2024-12-19T19:43:10.258Z (about 1 month ago)
- Topics: advent-of-code-2024, go
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2024
My solutions to the [Advent of Code](https://adventofcode.com/2024/about) problems.
By day 5, I needed 100% AI help to get through part 2. There would be little value in me continuing like that so I stopped.
## Usage
In the spirit of AoC, the inputs that are unique to me are not stored in source control. That can be obtained like so:
```bash
./fetch_input.sh
```You'll need to provide your login session token (find in browser's cookies). When it works, a text file will be downloaded.
The solutions assume the input text files exist. They can be run directly:
```bash
go run solution/day1.go
```