Updated main and aoc2022 ready for tomorrow :)

This commit is contained in:
2022-11-30 22:12:48 +00:00
parent 11cf615f43
commit 880f9f2a75
6 changed files with 93 additions and 27 deletions

View File

@ -1,5 +1,13 @@
#pragma once
#include <iostream>
#include <fstream>
#include <chrono>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <unordered_map>
#include <map>
template <typename Output>
struct SDay {
@ -7,7 +15,7 @@ struct SDay {
std::ifstream input;
//Constructor and Destructor
SDay(std::string);
SDay(std::string name);
~SDay();
virtual Output part1() const = 0;