aoc2019/src/Day1Solution.h

12 lines
194 B
C++

#ifndef AOC2019_DAY1SOLUTION_H
#define AOC2019_DAY1SOLUTION_H
#include "Solution.h"
class Day1Solution : public Solution {
public:
void run() override;
};
#endif //AOC2019_DAY1SOLUTION_H