scaffold solution source
This commit is contained in:
parent
e6bedd1d66
commit
124caba42b
8
.idea/.gitignore
generated
vendored
8
.idea/.gitignore
generated
vendored
@ -1,8 +0,0 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
2
.idea/advent.iml
generated
2
.idea/advent.iml
generated
@ -1,2 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module classpath="CMake" type="CPP_MODULE" version="4" />
|
5
.idea/codeStyles/codeStyleConfig.xml
generated
5
.idea/codeStyles/codeStyleConfig.xml
generated
@ -1,5 +0,0 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
|
||||
</state>
|
||||
</component>
|
4
.idea/misc.xml
generated
4
.idea/misc.xml
generated
@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
|
||||
</project>
|
8
.idea/modules.xml
generated
8
.idea/modules.xml
generated
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/advent.iml" filepath="$PROJECT_DIR$/.idea/advent.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
.idea/vcs.xml
generated
6
.idea/vcs.xml
generated
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -76,12 +76,14 @@ EOF
|
||||
fi
|
||||
tee "src/${year}/${d}.c" <<EOF
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent${year}day${d}(void) {
|
||||
char *input = get_input("input/${year}/${d}");
|
||||
printf("Solution for Day ${d} of ${year} is not completed yet\n");
|
||||
char *input = get_input("input/${year}/${d}");
|
||||
printf("Solution for Day ${d} of ${year} is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
EOF
|
||||
done
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2015day01(void) {
|
||||
char *input = get_input("input/2015/01");
|
||||
printf("Solution for Day 01 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2015day02(void) {
|
||||
char *input = get_input("input/2015/02");
|
||||
printf("Solution for Day 02 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2015day03(void) {
|
||||
char *input = get_input("input/2015/03");
|
||||
printf("Solution for Day 03 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2015day04(void) {
|
||||
char *input = get_input("input/2015/04");
|
||||
printf("Solution for Day 04 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2015day05(void) {
|
||||
char *input = get_input("input/2015/05");
|
||||
printf("Solution for Day 05 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2015day06(void) {
|
||||
char *input = get_input("input/2015/06");
|
||||
printf("Solution for Day 06 of 2015 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.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);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day01(void) {
|
||||
char *input = get_input("input/2016/01");
|
||||
printf("Solution for Day 01 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day02(void) {
|
||||
char *input = get_input("input/2016/02");
|
||||
printf("Solution for Day 02 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day03(void) {
|
||||
char *input = get_input("input/2016/03");
|
||||
printf("Solution for Day 03 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day04(void) {
|
||||
char *input = get_input("input/2016/04");
|
||||
printf("Solution for Day 04 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day05(void) {
|
||||
char *input = get_input("input/2016/05");
|
||||
printf("Solution for Day 05 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day06(void) {
|
||||
char *input = get_input("input/2016/06");
|
||||
printf("Solution for Day 06 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day07(void) {
|
||||
char *input = get_input("input/2016/07");
|
||||
printf("Solution for Day 07 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day08(void) {
|
||||
char *input = get_input("input/2016/08");
|
||||
printf("Solution for Day 08 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day09(void) {
|
||||
char *input = get_input("input/2016/09");
|
||||
printf("Solution for Day 09 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day10(void) {
|
||||
char *input = get_input("input/2016/10");
|
||||
printf("Solution for Day 10 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day11(void) {
|
||||
char *input = get_input("input/2016/11");
|
||||
printf("Solution for Day 11 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day12(void) {
|
||||
char *input = get_input("input/2016/12");
|
||||
printf("Solution for Day 12 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day13(void) {
|
||||
char *input = get_input("input/2016/13");
|
||||
printf("Solution for Day 13 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day14(void) {
|
||||
char *input = get_input("input/2016/14");
|
||||
printf("Solution for Day 14 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day15(void) {
|
||||
char *input = get_input("input/2016/15");
|
||||
printf("Solution for Day 15 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day16(void) {
|
||||
char *input = get_input("input/2016/16");
|
||||
printf("Solution for Day 16 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day17(void) {
|
||||
char *input = get_input("input/2016/17");
|
||||
printf("Solution for Day 17 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day18(void) {
|
||||
char *input = get_input("input/2016/18");
|
||||
printf("Solution for Day 18 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day19(void) {
|
||||
char *input = get_input("input/2016/19");
|
||||
printf("Solution for Day 19 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day20(void) {
|
||||
char *input = get_input("input/2016/20");
|
||||
printf("Solution for Day 20 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day21(void) {
|
||||
char *input = get_input("input/2016/21");
|
||||
printf("Solution for Day 21 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day22(void) {
|
||||
char *input = get_input("input/2016/22");
|
||||
printf("Solution for Day 22 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day23(void) {
|
||||
char *input = get_input("input/2016/23");
|
||||
printf("Solution for Day 23 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day24(void) {
|
||||
char *input = get_input("input/2016/24");
|
||||
printf("Solution for Day 24 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2016day25(void) {
|
||||
char *input = get_input("input/2016/25");
|
||||
printf("Solution for Day 25 of 2016 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day01(void) {
|
||||
char *input = get_input("input/2017/01");
|
||||
printf("Solution for Day 01 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day02(void) {
|
||||
char *input = get_input("input/2017/02");
|
||||
printf("Solution for Day 02 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day03(void) {
|
||||
char *input = get_input("input/2017/03");
|
||||
printf("Solution for Day 03 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day04(void) {
|
||||
char *input = get_input("input/2017/04");
|
||||
printf("Solution for Day 04 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day05(void) {
|
||||
char *input = get_input("input/2017/05");
|
||||
printf("Solution for Day 05 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day06(void) {
|
||||
char *input = get_input("input/2017/06");
|
||||
printf("Solution for Day 06 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day07(void) {
|
||||
char *input = get_input("input/2017/07");
|
||||
printf("Solution for Day 07 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day08(void) {
|
||||
char *input = get_input("input/2017/08");
|
||||
printf("Solution for Day 08 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day09(void) {
|
||||
char *input = get_input("input/2017/09");
|
||||
printf("Solution for Day 09 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day10(void) {
|
||||
char *input = get_input("input/2017/10");
|
||||
printf("Solution for Day 10 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day11(void) {
|
||||
char *input = get_input("input/2017/11");
|
||||
printf("Solution for Day 11 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day12(void) {
|
||||
char *input = get_input("input/2017/12");
|
||||
printf("Solution for Day 12 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day13(void) {
|
||||
char *input = get_input("input/2017/13");
|
||||
printf("Solution for Day 13 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day14(void) {
|
||||
char *input = get_input("input/2017/14");
|
||||
printf("Solution for Day 14 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day15(void) {
|
||||
char *input = get_input("input/2017/15");
|
||||
printf("Solution for Day 15 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day16(void) {
|
||||
char *input = get_input("input/2017/16");
|
||||
printf("Solution for Day 16 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day17(void) {
|
||||
char *input = get_input("input/2017/17");
|
||||
printf("Solution for Day 17 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day18(void) {
|
||||
char *input = get_input("input/2017/18");
|
||||
printf("Solution for Day 18 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day19(void) {
|
||||
char *input = get_input("input/2017/19");
|
||||
printf("Solution for Day 19 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day20(void) {
|
||||
char *input = get_input("input/2017/20");
|
||||
printf("Solution for Day 20 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day21(void) {
|
||||
char *input = get_input("input/2017/21");
|
||||
printf("Solution for Day 21 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day22(void) {
|
||||
char *input = get_input("input/2017/22");
|
||||
printf("Solution for Day 22 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day23(void) {
|
||||
char *input = get_input("input/2017/23");
|
||||
printf("Solution for Day 23 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day24(void) {
|
||||
char *input = get_input("input/2017/24");
|
||||
printf("Solution for Day 24 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2017day25(void) {
|
||||
char *input = get_input("input/2017/25");
|
||||
printf("Solution for Day 25 of 2017 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day01(void) {
|
||||
char *input = get_input("input/2018/01");
|
||||
printf("Solution for Day 01 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day02(void) {
|
||||
char *input = get_input("input/2018/02");
|
||||
printf("Solution for Day 02 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day03(void) {
|
||||
char *input = get_input("input/2018/03");
|
||||
printf("Solution for Day 03 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day04(void) {
|
||||
char *input = get_input("input/2018/04");
|
||||
printf("Solution for Day 04 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day05(void) {
|
||||
char *input = get_input("input/2018/05");
|
||||
printf("Solution for Day 05 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day06(void) {
|
||||
char *input = get_input("input/2018/06");
|
||||
printf("Solution for Day 06 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day07(void) {
|
||||
char *input = get_input("input/2018/07");
|
||||
printf("Solution for Day 07 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day08(void) {
|
||||
char *input = get_input("input/2018/08");
|
||||
printf("Solution for Day 08 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day09(void) {
|
||||
char *input = get_input("input/2018/09");
|
||||
printf("Solution for Day 09 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day10(void) {
|
||||
char *input = get_input("input/2018/10");
|
||||
printf("Solution for Day 10 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day11(void) {
|
||||
char *input = get_input("input/2018/11");
|
||||
printf("Solution for Day 11 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day12(void) {
|
||||
char *input = get_input("input/2018/12");
|
||||
printf("Solution for Day 12 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day13(void) {
|
||||
char *input = get_input("input/2018/13");
|
||||
printf("Solution for Day 13 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day14(void) {
|
||||
char *input = get_input("input/2018/14");
|
||||
printf("Solution for Day 14 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day15(void) {
|
||||
char *input = get_input("input/2018/15");
|
||||
printf("Solution for Day 15 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day16(void) {
|
||||
char *input = get_input("input/2018/16");
|
||||
printf("Solution for Day 16 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day17(void) {
|
||||
char *input = get_input("input/2018/17");
|
||||
printf("Solution for Day 17 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "input.h"
|
||||
|
||||
void advent2018day18(void) {
|
||||
char *input = get_input("input/2018/18");
|
||||
printf("Solution for Day 18 of 2018 is not completed yet\n");
|
||||
free(input);
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user