Initial Commit

This commit is contained in:
Jose Caban
2025-11-30 20:28:10 -05:00
commit e9ac699e67
209 changed files with 39737 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
#include "AdventHelpers/InputFileHelper.h"
#include "AdventHelpers/AdventOfCodeSolution.h"
#include <iostream>
// Interface
class ExampleSolution : public AdventHelpers::IAdventOfCodeSolution
{
public:
virtual void SolveExample(AdventHelper::InputFileHelper& inputFile) override;
virtual void SolveProblem01(AdventHelper::InputFileHelper& inputFile) override;
virtual void SolveProblem02(AdventHelper::InputFileHelper& inputFile) override;
};
int main()
{
auto* inputHelper = AdventHelper::InputFileHelper::create("input.txt");
std::cout << "Hello World!\n";
AdventHelper::InputFileHelper::destroy(inputHelper);
}
// Implementation
void ExampleSolution::SolveExample(AdventHelper::InputFileHelper& inputFile) {
}
void ExampleSolution::SolveProblem01(AdventHelper::InputFileHelper& inputFile) {
}
void ExampleSolution::SolveProblem02(AdventHelper::InputFileHelper& inputFile) {
}