Start day11, day15; create prototype

This commit is contained in:
Blizzard Finnegan 2021-12-26 17:45:40 -05:00
parent a033002257
commit 9835baf23e
3 changed files with 69 additions and 0 deletions

18
prototypeFile.cpp Normal file
View file

@ -0,0 +1,18 @@
#include <iostream>
#include <fstream>
#include <algorithm>
#include <vector>
#include <string>
#include <sstream>
using namespace std;
int main(void)
{
string rawInput;
ifstream readFile ("data/input.txt", ios::in);
while(getline(readFile, rawInput))
{
// File manip code goes here
}
}