small printing fix

This commit is contained in:
Leon Vatthauer 2024-12-11 16:57:25 +01:00
parent 10100da5e9
commit f51ad60b73
Signed by: leonv
SSH key fingerprint: SHA256:G4+ddwoZmhLPRB1agvXzZMXIzkVJ36dUYZXf5NxT+u8

View file

@ -128,7 +128,7 @@ long part2(const char *path) {
int main(int argc, char *argv[]) {
cout << "example1: " << part1("example") << endl;
cout << "input1: " << part1("input") << endl;
cout << "example2: " << endl << part2("example") << endl;
cout << "example2: " << part2("example") << endl;
cout << "input2: " << part2("input") << endl;
return 0;
}