advent-of-code-2023/README.org

425 B

Advent of Code 2023

All programs read input from stdin and print output to stdout. The output will be printed in this format:

Part 1 Answer: <answer1>
Part 2 Answer: <answer2>

Haskell

Run it like this:

cabal run aoc2023 -- day<n> < ./input/day<n>

Bash

Run it like this:

./bash/day<n>.sh < ./input/day<n>