27 lines
543 B
C++
27 lines
543 B
C++
#include "AdventHelpers/AdventOfCodeSolution.h"
|
|
|
|
#include <iostream>
|
|
#include <cassert>
|
|
#include <string>
|
|
|
|
class Day02Solution : public AdventHelpers::AdventOfCodeSolution
|
|
{
|
|
public:
|
|
virtual std::string SolveProblem01(AdventHelpers::InputFileHelper& inputFile) override {
|
|
return "todo";
|
|
}
|
|
|
|
virtual std::string SolveProblem02(AdventHelpers::InputFileHelper& inputFile) override {
|
|
return "todo";
|
|
}
|
|
};
|
|
|
|
int main(const char* argv[], int argc)
|
|
{
|
|
Day02Solution solution;
|
|
solution.SolveAll();
|
|
|
|
return 0;
|
|
}
|
|
|