Go to file
Akshay Mankar 9a51cb7a77
[haskell] Solve Day 8
2023-12-09 15:15:34 +01:00
bash [rust] Solve Day 2 2023-12-02 13:51:15 +01:00
haskell [haskell] Solve Day 8 2023-12-09 15:15:34 +01:00
input [haskell] Solve Day 8 2023-12-09 15:15:34 +01:00
rust [rust] Use collect for traversing! 2023-12-02 14:47:55 +01:00
.dir-locals.el [haskell] Solve Day 1 2023-12-01 12:01:23 +01:00
.envrc [haskell] Solve Day 1 2023-12-01 12:01:23 +01:00
.gitignore [rust] Solve Day 1 2023-12-01 21:23:26 +01:00
Cargo.lock [rust] Solve Day 1 2023-12-01 21:23:26 +01:00
Cargo.toml [rust] Solve Day 1 2023-12-01 21:23:26 +01:00
README.org [rust] Solve Day 1 2023-12-01 21:23:26 +01:00
answers.nix [haskell] Solve Day 8 2023-12-09 15:15:34 +01:00
cabal.project [haskell] Solve Day 1 2023-12-01 12:01:23 +01:00
default.nix [haskell] Solve Day 3 2023-12-03 21:36:20 +01:00
flake.lock [haskell] Solve Day 1 2023-12-01 12:01:23 +01:00
flake.nix [nix] Allow skipping checks 2023-12-03 21:37:06 +01:00
hls.sh [haskell] Solve Day 1 2023-12-01 12:01:23 +01:00

README.org

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/main.sh day<n> < ./input/day<n>

Rust

Run it like this:

cargo run -- day<n> < ./input/day<n>