Welcome to my repository of solutions for Advent of Code 2023 challenges implemented in Go!
Advent of Code is an annual programming event that takes place in December. Each day, a new programming puzzle is released, and participants are challenged to solve it using their programming skills. The puzzles cover a wide range of topics, including algorithms, data structures, and problem-solving techniques.
Official website: Advent of Code
The repository is organized by day. Each day's folder contains the Go source code for solving that day's puzzle, along with any necessary input files.
- Clone the repository:
git clone https://github.com/tomaszwysocki/advent-of-code-2023.git
cd advent-of-code-go
- Navigate to the specific day you are interested in:
cd day01
- Run the Go solution for part 1:
go run part1.go
- Run the Go solution for part 2:
go run part2.go