init, 2015 & 2016

This commit is contained in:
2025-11-14 07:14:53 -08:00
commit ef109439e6
124 changed files with 14861 additions and 0 deletions

10
2015/src/23.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
#include "lfinput.h"
void advent2015day23(void) {
char *input = get_input("input/23");
printf("Solution for Day 23 of 2015 is not completed yet\n");
free(input);
}