Skip to content

Latest commit

 

History

History
42 lines (38 loc) · 1.28 KB

README.md

File metadata and controls

42 lines (38 loc) · 1.28 KB

Advent of Code Solutions🎄

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

Intcode Interpreter Debug Screen

This is a screenshot of a (somewhat) interactive debug screen for the intcode computer from 2019. image