Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 599 Bytes

README.md

File metadata and controls

47 lines (37 loc) · 599 Bytes

Advent of Code

Solving the challenges in Advent of Code.

Running

cd into YEAR/DAY directory and ...

Python

Linux, macOS

./py/run.py INPUT_FILE

Windows

python py/run.py INPUT_FILE

C#

dotnet run -p cs/run.csproj INPUT_FILE

Rust

cargo run --quiet --manifest-path rs/Cargo.toml INPUT_FILE

Javascript

node js/run.js INPUT_FILE

C++

make -f cpp/makefile INPUT=INPUT_FILE

C

make -f c/makefile INPUT=INPUT_FILE

Go

go run go/run.go INPUT_FILE