From 554ad47f09974f0131df285fda8ea50a1fdad8f5 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 11 Dec 2023 15:14:47 +0100 Subject: Initial commit, some solutions --- 2023/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 2023/README.md (limited to '2023/README.md') 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 @@ +# 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. + +## 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