/aoc22

Advent of Code 2022

Primary LanguageCMIT LicenseMIT

Advent of Code 2022

Last Commit on GitHub Last Commit on GitHub

This is my participation in the Advent of Code event for the year 2022.

Enjoy the Advent season!

🌟🎄🎅🎁🔔🕯️

Status

day part 1 part 2
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

Implementation details

The code is written in C99 without any use of libraries except standard library. Every day is a separate program. The puzzle input is stored two files:

  • data_example.txt
  • data_contest.txt (not under version control)
$> ./program data_example.txt

I use msys, gcc, GNU make, Visual Studio Code for development and debugging.