Added txt to their problem directory

This commit is contained in:
2021-11-13 13:48:46 +01:00
parent 0e1b0de59f
commit e1ed7960aa
2 changed files with 1 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ int main(){
auto start = chrono::high_resolution_clock::now();
int c;
ifstream triangleFile("../txts/p067_triangle.txt");
ifstream triangleFile("p067_triangle.txt");
vector<vector<int>> triangle(DEPTH);
for(int i = 0; i < DEPTH; ++i){