Skip to content

Latest commit

 

History

History
86 lines (65 loc) · 1.96 KB

README.asciidoc

File metadata and controls

86 lines (65 loc) · 1.96 KB

AoC Solutions

Solutions for the Advent of Code puzzles.

Build and Running solutions

For Python solutions, run the following commands:

python solve.py input.txt

For C++ solutions, run the following commands:

g++ -O2 -Wall -DNDEBUG -std=c++20 -march=native -o solve.exe solve.cpp
./solve.exe input.txt

If you are using an aarch64 processor, repalce -O2 with -O3 to have auto vectorisation for better performance.

For Rust solutions, run the following commands:

cargo run --release --bin solve -- input.txt