automated code cleanup
This commit is contained in:
@ -3,8 +3,10 @@
|
||||
|
||||
#include "lfinput.h"
|
||||
|
||||
#define GRID_SZ 1000
|
||||
|
||||
void advent2015day06(void) {
|
||||
char *input = get_input("input/2015/06");
|
||||
printf("Solution for Day 06 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
|
||||
char *input = get_lines("input/2015/06");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day07(void) {
|
||||
char *input = get_input("input/2015/07");
|
||||
printf("Solution for Day 07 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/07");
|
||||
printf("Solution for Day 07 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day08(void) {
|
||||
char *input = get_input("input/2015/08");
|
||||
printf("Solution for Day 08 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/08");
|
||||
printf("Solution for Day 08 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day09(void) {
|
||||
char *input = get_input("input/2015/09");
|
||||
printf("Solution for Day 09 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/09");
|
||||
printf("Solution for Day 09 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day10(void) {
|
||||
char *input = get_input("input/2015/10");
|
||||
printf("Solution for Day 10 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/10");
|
||||
printf("Solution for Day 10 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day11(void) {
|
||||
char *input = get_input("input/2015/11");
|
||||
printf("Solution for Day 11 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/11");
|
||||
printf("Solution for Day 11 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day12(void) {
|
||||
char *input = get_input("input/2015/12");
|
||||
printf("Solution for Day 12 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/12");
|
||||
printf("Solution for Day 12 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day13(void) {
|
||||
char *input = get_input("input/2015/13");
|
||||
printf("Solution for Day 13 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/13");
|
||||
printf("Solution for Day 13 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day14(void) {
|
||||
char *input = get_input("input/2015/14");
|
||||
printf("Solution for Day 14 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/14");
|
||||
printf("Solution for Day 14 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day15(void) {
|
||||
char *input = get_input("input/2015/15");
|
||||
printf("Solution for Day 15 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/15");
|
||||
printf("Solution for Day 15 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day16(void) {
|
||||
char *input = get_input("input/2015/16");
|
||||
printf("Solution for Day 16 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/16");
|
||||
printf("Solution for Day 16 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day17(void) {
|
||||
char *input = get_input("input/2015/17");
|
||||
printf("Solution for Day 17 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/17");
|
||||
printf("Solution for Day 17 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day18(void) {
|
||||
char *input = get_input("input/2015/18");
|
||||
printf("Solution for Day 18 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/18");
|
||||
printf("Solution for Day 18 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day19(void) {
|
||||
char *input = get_input("input/2015/19");
|
||||
printf("Solution for Day 19 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/19");
|
||||
printf("Solution for Day 19 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day20(void) {
|
||||
char *input = get_input("input/2015/20");
|
||||
printf("Solution for Day 20 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/20");
|
||||
printf("Solution for Day 20 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day21(void) {
|
||||
char *input = get_input("input/2015/21");
|
||||
printf("Solution for Day 21 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/21");
|
||||
printf("Solution for Day 21 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day22(void) {
|
||||
char *input = get_input("input/2015/22");
|
||||
printf("Solution for Day 22 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/22");
|
||||
printf("Solution for Day 22 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day23(void) {
|
||||
char *input = get_input("input/2015/23");
|
||||
printf("Solution for Day 23 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/23");
|
||||
printf("Solution for Day 23 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day24(void) {
|
||||
char *input = get_input("input/2015/24");
|
||||
printf("Solution for Day 24 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/24");
|
||||
printf("Solution for Day 24 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "lfinput.h"
|
||||
|
||||
void advent2015day25(void) {
|
||||
char *input = get_input("input/2015/25");
|
||||
printf("Solution for Day 25 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
char *input = get_input("input/2015/25");
|
||||
printf("Solution for Day 25 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
Reference in New Issue
Block a user