Skip to content

Bigsby/aoc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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