Add solution to day 2

This commit is contained in:
Jose Caban
2025-12-02 01:12:59 -05:00
parent b2c1ba8227
commit 3e35b16388
7 changed files with 135 additions and 6 deletions

View File

@@ -28,8 +28,8 @@ namespace AdventHelpers {
return inputFileHelper;
}
const char* InputFileHelper::getLine() {
return nullptr;
const char* InputFileHelper::getLine(size_t index) {
return mLines[index].c_str();
}
void InputFileHelper::destroy(InputFileHelper* inputFileHelper) {