Created base solution struct and added all 25 days

This commit is contained in:
2022-11-29 22:09:15 +00:00
parent da63d9593d
commit 60f49c2705
30 changed files with 135 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "../aoc2022.h"
template <typename Output>
struct SDay01 : public SDay<Output> {
//Class constructor
using SDay<Output>::SDay;
//Solutions to both days
Output part1() const override final { return Output(); }
Output part2() const override final { return Output(); }
};