Categorygithub.com/FilipSolich/advent-of-code
repository
0.0.0-20241217090801-1837935e22e6
Repository: https://github.com/filipsolich/advent-of-code.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Advent of Code

Solutions for Advent of Code written in Go.

State of solutions

Year01020304050607080910111213141516171819202122232425
2024****************************
2023***************

Usage

Generate template for day and download input

task generate YEAR=2024 DAY=1
task aoc:input YEAR=2024 DAY=1

Run solution

This runs both parts with input.txt which is in same directory as main.go.

task run YEAR=2024 DAY=1

To pass flags to program append -- <flags>. Possible options:

-input string
      Input file. If empty read from stdin.
-part int
      Solution part. If empty run both parts.
-timeout duration
      Solution timeout. (default 1m0s)