feat: add day 3

This commit is contained in:
2023-12-06 17:34:27 +01:00
parent b88ad0abf9
commit 52784ef81a
7 changed files with 316 additions and 14 deletions

View File

@@ -8,6 +8,13 @@
char* read_line(FILE *f, char **buffer, int *capacity);
static inline int min(const int a, const int b) {
return a < b ? a : b;
}
static inline int max(const int a, const int b) {
return a > b ? a : b;
}
#define ADVENT_OF_CODE_2023_INPUT_HANDLER_H
#endif //ADVENT_OF_CODE_2023_INPUT_HANDLER_H