Welcome to my solution repository for Advent of Code 2024! This repository contains my implementations for each of the daily puzzles using the Go programming language.
Advent of Code is an annual programming event that runs throughout December. Each day presents a new programming challenge that participants can solve to unlock the next puzzle. The puzzles are designed to be solved using any programming language and are a fun way to test and improve your coding skills.
day1/
- Solutions for Day 1day2/
- Solutions for Day 2day3/
- Solutions for Day 3...
- Additional directories for each day as needed
Each day’s solution includes:
- A Go implementation for solving the problem.
To run these solutions locally, you will need:
- Go installed on your system (install Go)
- Clone this repository:
git clone https://github.com/hatsmaker/aoc.git cd aoc
- Navigate to the directory of the day you want to run:
cd day1
- Run the solution:
go run main.go