diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-12-11 15:14:47 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-12-11 15:14:47 +0100 |
| commit | 554ad47f09974f0131df285fda8ea50a1fdad8f5 (patch) | |
| tree | d23caeb85e7fce6290664a0ebf3c96f513efbe94 /2023/README.md | |
| download | aoc-554ad47f09974f0131df285fda8ea50a1fdad8f5.tar.gz aoc-554ad47f09974f0131df285fda8ea50a1fdad8f5.zip | |
Initial commit, some solutions
Diffstat (limited to '2023/README.md')
| -rw-r--r-- | 2023/README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2023/README.md b/2023/README.md new file mode 100644 index 0000000..cb3ae47 --- /dev/null +++ b/2023/README.md | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | # Advent of Code 2023 | ||
| 2 | |||
| 3 | This is my first year trying the AoC. I decided to use C because it is the | ||
| 4 | language I know the best and I am familiar with the standard library. | ||
| 5 | |||
| 6 | ## Instructions | ||
| 7 | |||
| 8 | Compile with `-std=c99` and other required options, for example | ||
| 9 | |||
| 10 | ``` | ||
| 11 | $ cc -std=c99 -lm 06/6a.c | ||
| 12 | ``` | ||
| 13 | |||
| 14 | My solutions read from stdin, so run the e.g. with | ||
| 15 | |||
| 16 | ``` | ||
| 17 | $ ./a.out <in.txt | ||
| 18 | ``` | ||
