Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.06 KB

README.md

File metadata and controls

39 lines (25 loc) · 1.06 KB

Advent of Code 2023 Solutions in Go

Welcome to my repository of solutions for Advent of Code 2023 challenges implemented in Go!

Advent of Code

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

Repository Structure

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.

Getting Started

  1. Clone the repository:
git clone https://github.com/tomaszwysocki/advent-of-code-2023.git
cd advent-of-code-go
  1. Navigate to the specific day you are interested in:
cd day01
  1. Run the Go solution for part 1:
go run part1.go
  1. Run the Go solution for part 2:
go run part2.go