2023 cleanup
This commit is contained in:
@ -4,7 +4,10 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day01(void) {
|
||||
char *input = get_input("input/2023/01");
|
||||
printf("Solution for Day 01 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
size_t sz = 0;
|
||||
char **lines = get_lines("input/2023/01", &sz);
|
||||
|
||||
|
||||
|
||||
del_lines(lines);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day02(void) {
|
||||
char *input = get_input("input/2023/02");
|
||||
printf("Solution for Day 02 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/02");
|
||||
printf("Solution for Day 02 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day03(void) {
|
||||
char *input = get_input("input/2023/03");
|
||||
printf("Solution for Day 03 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/03");
|
||||
printf("Solution for Day 03 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day04(void) {
|
||||
char *input = get_input("input/2023/04");
|
||||
printf("Solution for Day 04 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/04");
|
||||
printf("Solution for Day 04 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day05(void) {
|
||||
char *input = get_input("input/2023/05");
|
||||
printf("Solution for Day 05 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/05");
|
||||
printf("Solution for Day 05 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day06(void) {
|
||||
char *input = get_input("input/2023/06");
|
||||
printf("Solution for Day 06 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/06");
|
||||
printf("Solution for Day 06 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day07(void) {
|
||||
char *input = get_input("input/2023/07");
|
||||
printf("Solution for Day 07 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/07");
|
||||
printf("Solution for Day 07 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day08(void) {
|
||||
char *input = get_input("input/2023/08");
|
||||
printf("Solution for Day 08 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/08");
|
||||
printf("Solution for Day 08 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day09(void) {
|
||||
char *input = get_input("input/2023/09");
|
||||
printf("Solution for Day 09 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/09");
|
||||
printf("Solution for Day 09 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day10(void) {
|
||||
char *input = get_input("input/2023/10");
|
||||
printf("Solution for Day 10 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/10");
|
||||
printf("Solution for Day 10 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day11(void) {
|
||||
char *input = get_input("input/2023/11");
|
||||
printf("Solution for Day 11 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/11");
|
||||
printf("Solution for Day 11 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day12(void) {
|
||||
char *input = get_input("input/2023/12");
|
||||
printf("Solution for Day 12 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/12");
|
||||
printf("Solution for Day 12 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day13(void) {
|
||||
char *input = get_input("input/2023/13");
|
||||
printf("Solution for Day 13 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/13");
|
||||
printf("Solution for Day 13 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day14(void) {
|
||||
char *input = get_input("input/2023/14");
|
||||
printf("Solution for Day 14 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/14");
|
||||
printf("Solution for Day 14 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day15(void) {
|
||||
char *input = get_input("input/2023/15");
|
||||
printf("Solution for Day 15 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/15");
|
||||
printf("Solution for Day 15 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day16(void) {
|
||||
char *input = get_input("input/2023/16");
|
||||
printf("Solution for Day 16 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/16");
|
||||
printf("Solution for Day 16 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day17(void) {
|
||||
char *input = get_input("input/2023/17");
|
||||
printf("Solution for Day 17 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/17");
|
||||
printf("Solution for Day 17 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day18(void) {
|
||||
char *input = get_input("input/2023/18");
|
||||
printf("Solution for Day 18 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/18");
|
||||
printf("Solution for Day 18 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day19(void) {
|
||||
char *input = get_input("input/2023/19");
|
||||
printf("Solution for Day 19 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/19");
|
||||
printf("Solution for Day 19 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day20(void) {
|
||||
char *input = get_input("input/2023/20");
|
||||
printf("Solution for Day 20 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/20");
|
||||
printf("Solution for Day 20 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day21(void) {
|
||||
char *input = get_input("input/2023/21");
|
||||
printf("Solution for Day 21 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/21");
|
||||
printf("Solution for Day 21 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day22(void) {
|
||||
char *input = get_input("input/2023/22");
|
||||
printf("Solution for Day 22 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/22");
|
||||
printf("Solution for Day 22 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day23(void) {
|
||||
char *input = get_input("input/2023/23");
|
||||
printf("Solution for Day 23 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/23");
|
||||
printf("Solution for Day 23 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day24(void) {
|
||||
char *input = get_input("input/2023/24");
|
||||
printf("Solution for Day 24 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/24");
|
||||
printf("Solution for Day 24 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2023day25(void) {
|
||||
char *input = get_input("input/2023/25");
|
||||
printf("Solution for Day 25 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2023/25");
|
||||
printf("Solution for Day 25 of 2023 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
Reference in New Issue
Block a user