Skip to content

My solutions to the Advent of Code challenges, written in Go.

Notifications You must be signed in to change notification settings

cecobask/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

advent-of-code

My solutions to the Advent of Code challenges, written in Go.

Project Structure

The solutions are stored in their own directory with naming format calendar/$YEAR/$DAY.
Each directory contains the following files:

  • input.txt - puzzle input
  • main.go - puzzle solutions (go source code)
  • README.md - puzzle instructions
  • Makefile - common operations such as building and running the puzzle solutions

Automations

By referencing the root Makefile, you can execute the following commands:

To generate the folder structure for today:

make generate

To generate the folder structure for a specific date:

make generate YEAR=2024 DAY=1

To lint the Go source code:

make lint

About

My solutions to the Advent of Code challenges, written in Go.

Resources

Stars

Watchers

Forks