advent-of-code/2022/cpp/template/answer.cpp

23 lines
357 B
C++
Raw Normal View History

2023-08-02 11:50:10 +02:00
// AOC - 2022 - DATE
#include "answer.hpp"
#include <fstream>
#include <iostream>
Input get_input(const char* filename) {
std::ifstream stream(filename);
std::string str;
Input ret;
while (getline(stream, str)) {}
return ret;
}
std::string get_result(Input& input) {
std::string ret;
#if PART == 1
#else
#endif
return ret;
}