started puzzle 3

This commit is contained in:
Seth Samuel 2025-02-18 23:28:43 +00:00
parent a9b09b06ac
commit 54d4c86867
4 changed files with 47 additions and 0 deletions

21
3/puzzle3.cpp Normal file
View file

@ -0,0 +1,21 @@
#include <iostream>
#include <regex>
#include <fstream>
#include <string>
#include <list>
using namespace std;
int main(int argc, char const *argv[])
{
ifstream puzzle("puzzleInput", ifstream::in);
string line;
while (getline(puzzle, line))
{
cout << line << endl;
}
return 0;
}