11 lines
216 B
C
11 lines
216 B
C
|
#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);
|
||
|
}
|