Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 492 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 492 Bytes

Advent of Code 2022

In C!

⚠️ WARNING: Highly inefficient code

Compatibility

This will not work when compiling with MSVC, because it doesn't support some libc functions (strsep, etc.)

How to run?

These are instructions for UNIX systems, if you use windows, go figure it out yourself

Requirements

  • GCC / Clang or any compatible C compiler
  • cmake
  • Make or Ninja or any other cmake generator
mkdir build
cd build
cmake ..
cmake --build .