Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 775 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 775 Bytes

🎄 Advent of Code 2023 🎄

Working through problems for Advent of Code 2023.

Using Go

Setup

  1. Install Go from here.
  2. Run the following script to install dependencies.
    go mod tidy

Running

Run the following command to test a given day's problem.

go test ./puzzles/day00

Run the following to run the given puzzle input for the day.

go run ./puzzles/day00/main.go

Template

To create a template of files needed for a new day's puzzle, run the following command.

./scripts/create-day 01

This will create a new folder named day01 pre-created with files for the main code, test code, and input files.