No puzzle inputs have been provided in this repo per Eric Wastl's request.
All solutions can be checked against an input/output directory with the structure:
.
├── 2019
│ ├── 01
│ │ ├── input.txt
│ │ └── output.txt
│ ├── 02
│ │ ├── input.txt
│ │ └── output.txt
│ ├── 03
│ │ ├── input.txt
│ │ └── output.txt
└── 2023
├── 01
│ ├── input.txt
│ └── output.txt
├── 02
│ ├── input.txt
│ └── output.txt
└── 03
├── input.txt
└── output.txt
And can be run using the provided justfile with the command:
just run ~/path/to/inputs
An optional year can be provided, and if a year is provided, an optional day can be provided as well:
just run ~/path/to/inputs/ 2019
just run ~/path/to/inputs/ 2019 5
This is a screenshot of a (somewhat) interactive debug screen for the intcode computer from 2019.