scaffold solution source
This commit is contained in:
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day01(void) {
|
||||
char *input = get_input("input/2020/01");
|
||||
printf("Solution for Day 01 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day02(void) {
|
||||
char *input = get_input("input/2020/02");
|
||||
printf("Solution for Day 02 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day03(void) {
|
||||
char *input = get_input("input/2020/03");
|
||||
printf("Solution for Day 03 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day04(void) {
|
||||
char *input = get_input("input/2020/04");
|
||||
printf("Solution for Day 04 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day05(void) {
|
||||
char *input = get_input("input/2020/05");
|
||||
printf("Solution for Day 05 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day06(void) {
|
||||
char *input = get_input("input/2020/06");
|
||||
printf("Solution for Day 06 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day07(void) {
|
||||
char *input = get_input("input/2020/07");
|
||||
printf("Solution for Day 07 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day08(void) {
|
||||
char *input = get_input("input/2020/08");
|
||||
printf("Solution for Day 08 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day09(void) {
|
||||
char *input = get_input("input/2020/09");
|
||||
printf("Solution for Day 09 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day10(void) {
|
||||
char *input = get_input("input/2020/10");
|
||||
printf("Solution for Day 10 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day11(void) {
|
||||
char *input = get_input("input/2020/11");
|
||||
printf("Solution for Day 11 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day12(void) {
|
||||
char *input = get_input("input/2020/12");
|
||||
printf("Solution for Day 12 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day13(void) {
|
||||
char *input = get_input("input/2020/13");
|
||||
printf("Solution for Day 13 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day14(void) {
|
||||
char *input = get_input("input/2020/14");
|
||||
printf("Solution for Day 14 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day15(void) {
|
||||
char *input = get_input("input/2020/15");
|
||||
printf("Solution for Day 15 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day16(void) {
|
||||
char *input = get_input("input/2020/16");
|
||||
printf("Solution for Day 16 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day17(void) {
|
||||
char *input = get_input("input/2020/17");
|
||||
printf("Solution for Day 17 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day18(void) {
|
||||
char *input = get_input("input/2020/18");
|
||||
printf("Solution for Day 18 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day19(void) {
|
||||
char *input = get_input("input/2020/19");
|
||||
printf("Solution for Day 19 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day20(void) {
|
||||
char *input = get_input("input/2020/20");
|
||||
printf("Solution for Day 20 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day21(void) {
|
||||
char *input = get_input("input/2020/21");
|
||||
printf("Solution for Day 21 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day22(void) {
|
||||
char *input = get_input("input/2020/22");
|
||||
printf("Solution for Day 22 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day23(void) {
|
||||
char *input = get_input("input/2020/23");
|
||||
printf("Solution for Day 23 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day24(void) {
|
||||
char *input = get_input("input/2020/24");
|
||||
printf("Solution for Day 24 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2020day25(void) {
|
||||
char *input = get_input("input/2020/25");
|
||||
printf("Solution for Day 25 of 2020 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
Reference in New Issue
Block a user