Add 2016 templates
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#include "common/aoc.h"
|
||||
|
||||
namespace y2016::day07
|
||||
{
|
||||
REGISTER_DAY(2016, Day07, std::vector<int>, int);
|
||||
|
||||
REGISTER_TEST_EXAMPLE(2016, Day07, ExampleInput, 1, 0);
|
||||
REGISTER_TEST(2016, Day07, Input, 1, 0);
|
||||
REGISTER_TEST_EXAMPLE(2016, Day07, ExampleInput, 2, 0);
|
||||
REGISTER_TEST(2016, Day07, Input, 2, 0);
|
||||
|
||||
READ_INPUT(input)
|
||||
{
|
||||
std::vector<int> vec;
|
||||
std::string str;
|
||||
while (getline(input, str))
|
||||
{
|
||||
}
|
||||
return vec;
|
||||
}
|
||||
|
||||
OUTPUT1(input)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
OUTPUT2(input)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user