16 lines
212 B
C
16 lines
212 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "aoc.h"
|
||
|
|
||
|
#define DAY 0
|
||
|
#define INPUT_LENGTH 0
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
char const *const input = "";
|
||
|
part_1(input);
|
||
|
part_2(input);
|
||
|
return 0;
|
||
|
}
|