blob: eb64e56d23d579a6b0fcb46ab244c1987712c255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Advent of Code 2023
This is my first year trying the AoC. I decided to use C because it is the
language I know the best and I am familiar with the standard library.
I did not write many comments, but if you are curious about my solutions
send me an email and I'll be happy to explain!
## Instructions
Compile with `-std=c99` and other required options, for example
```
$ cc -std=c99 -lm 06/6a.c
```
My solutions read from stdin, so run the e.g. with
```
$ ./a.out <in.txt
```
|