aoc/src/2024/05.c

11 lines
216 B
C
Raw Normal View History

2024-12-02 06:22:25 -08:00
#include <stdio.h>
#include <stdlib.h>
#include "lfinput.h"
void advent2024day05(void) {
char *input = get_input("input/2024/05");
printf("Solution for Day 05 of 2024 is not completed yet\n");
free(input);
}