2021-07-14 13:50:33 -07:00
|
|
|
#include <stdio.h>
|
2021-09-01 15:08:54 -07:00
|
|
|
#include <stdlib.h>
|
2021-07-14 13:50:33 -07:00
|
|
|
|
2021-12-21 06:23:04 -08:00
|
|
|
#include "lfinput.h"
|
2021-07-14 13:50:33 -07:00
|
|
|
|
|
|
|
void advent2020day24(void) {
|
2021-12-21 07:02:22 -08:00
|
|
|
char *input = get_input("input/2020/24");
|
|
|
|
printf("Solution for Day 24 of 2020 is not completed yet\n");
|
|
|
|
free(input);
|
2021-07-14 13:50:33 -07:00
|
|
|
}
|