Initial commit

This commit is contained in:
Hugo Mårdbrink 2024-11-20 10:45:02 +01:00
commit 832cd997b3
28 changed files with 425 additions and 0 deletions

15
d23/main.cxx Normal file
View file

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