https://github.com/ericthomasca/adventofcode2023
https://github.com/ericthomasca/adventofcode2023
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ericthomasca/adventofcode2023
- Owner: ericthomasca
- License: mit
- Created: 2023-11-24T17:56:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-07T01:21:30.000Z (over 2 years ago)
- Last Synced: 2025-03-21T08:22:46.688Z (over 1 year ago)
- Language: Go
- Size: 21.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023 Solutions (Golang)
This repository contains my solutions to the Advent of Code 2023 challenges implemented in Golang. Advent of Code is an annual coding event with daily programming puzzles throughout December.
## About Advent of Code
Advent of Code is an event created by Eric Wastl where participants solve programming puzzles of increasing difficulty each day leading up to Christmas.
[Official Website](https://adventofcode.com/)
## Solutions Overview
This repository contains my solutions to the Advent of Code 2023 challenges. Each day's challenge has its own folder named according to the day (e.g., `day01`, `day02`, etc.). Within each folder, you'll find the solutions implemented in Golang.
The solutions are structured with detailed comments explaining the approach, algorithm used, and any notable optimizations or considerations.
## Folder Structure
main.go
- day01/
- solution1.go
- solution2.go
- ...
- day02/
- solution1.go
- solution2.go
- ...
- ...
## Running the Solutions
To run the solutions for each day, navigate to the root directory of the project in your terminal and execute the `main.go` file:
```bash
go run main.go
```
## Contributing
Contributions are welcome! If you'd like to contribute additional solutions, improvements, or optimizations to existing Golang solutions, feel free to open a pull request.
## Acknowledgments
I'd like to express my gratitude to the creators of Advent of Code, Eric Wastl, and the entire community for making this event possible.