Categorygithub.com/jatinparab/aoc2024
repositorypackage
0.0.0-20241214101734-c059981917b7
Repository: https://github.com/jatinparab/aoc2024.git
Documentation: pkg.go.dev

# README

Advent of Code 2024

Solutions for the Advent of Code 2024, written in Go.

Create inputs

  • Create a folder data in the root of the project
  • Use the following pattern to name the data files in this folder
    • day1
    • day1.test
    • day2
    • day2.test
    • ... and so on

To run solution for a specific day

go run main.go <day> [--test]

Example:

To run with test data

go run main.go 1 --test

To run with input data

go run main.go 1