Begin Network build

This commit is contained in:
2023-06-29 22:00:41 +02:00
parent 00ed1e0be1
commit 8e9c3483aa
18 changed files with 874 additions and 0 deletions

23
test.cc Normal file
View File

@@ -0,0 +1,23 @@
#include <map>
#include <string>
#include <iostream>
using namespace std;
int main(int argc, char const* argv[])
{
map<string, int> m;
m["a"] = 1;
m["b"] = 2;
m["c"] = 3;
if (m.find("b") != m.end()) {
cout << "Found b" << endl;
} else {
cout << "Not found b" << endl;
}
// for (auto [key, value] : m) {
// cout << key << " " << value << endl;
// }
return 0;
}