Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 357 Bytes

File metadata and controls

11 lines (6 loc) · 357 Bytes

Advent Of Code repository

This repository stores all programs for AOC, written by lopes143

Each challenge of each day is developed both in C and Python.

C/C++ building command: gcc/g++ -O3 -Wall -lm {files.c/cpp} -o {exe}

Optional parameter: -g (enables better debugging)

Valgind Debugging: valgrind --leak-check=full --show-leak-kinds=all FILE