aoc/src/2021/02.c

11 lines
214 B
C
Raw Normal View History

2021-12-10 11:01:51 -08:00
#include <stdio.h>
#include <stdlib.h>
#include "input.h"
void advent2021day02(void) {
char *input = get_input("input/2021/02");
printf("Solution for Day 02 of 2021 is not completed yet\n");
free(input);
}