aoc/src/2024/15.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 advent2024day15(void) {
char *input = get_input("input/2024/15");
printf("Solution for Day 15 of 2024 is not completed yet\n");
free(input);
}