Add 2015 templates
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#include "common/aoc.h"
|
||||
|
||||
namespace y2015::day12
|
||||
{
|
||||
REGISTER_DAY(2015, Day12, std::vector<int>, int);
|
||||
|
||||
REGISTER_TEST_EXAMPLE(2015, Day12, ExampleInput, 1, 0);
|
||||
REGISTER_TEST(2015, Day12, Input, 1, 0);
|
||||
REGISTER_TEST_EXAMPLE(2015, Day12, ExampleInput, 2, 0);
|
||||
REGISTER_TEST(2015, Day12, 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