Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 938 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 938 Bytes

Go

Advent of Code 2023

My attempt at https://adventofcode.com/2023

Note: All task input files are excluded from the repository with ".gitignore" – we should not post them publicly, as Eric Wastl asks for: Tweet.

To run the scripts

  1. Run make DAY=01 prep with the day number. The example here is for Day 01
  2. Run make input to download the input file into the day's folder
  3. Run make test to run current day's file

To set up cookie for make input

  1. Login to AoC
  2. Most requests should use your session cookie, copy it. It starts with "session=" until ";"
  3. Put it into "cookie.txt"

To test the template

  1. Set "day.txt" to "template"
  2. Run make test