Rename single digit days

This commit is contained in:
Hugo Mårdbrink 2024-12-05 22:56:49 +01:00
parent ac04ea1ac2
commit 9980433c26
10 changed files with 2 additions and 1 deletions

View file

@ -1,15 +0,0 @@
#include <iostream>
#include <fstream>
using std::cout, std::endl;
int main() {
std::ifstream file{"../d6/input.txt"};
std::string line;
while (std::getline(file, line)) {
}
return 0;
}