diff --git a/HashMaps/Inbuilt_HashMap.cpp b/HashMaps/Inbuilt_HashMap.cpp index 0ea9d51..86be46d 100644 --- a/HashMaps/Inbuilt_HashMap.cpp +++ b/HashMaps/Inbuilt_HashMap.cpp @@ -19,10 +19,14 @@ int main() { cout << ourmap.at("abc") << endl; //cout << ourmap.at("ghi") << endl; +// cout << "size : " << ourmap.size() << endl; +// cout << ourmap["ghi"] << endl; +// cout << "size : " << ourmap.size() << endl; + cout << "size : " << ourmap.size() << endl; cout << ourmap["ghi"] << endl; cout << "size : " << ourmap.size() << endl; - + // check Presense if (ourmap.count("ghi") > 0) { cout << "ghi is present" << endl; diff --git a/README.md b/README.md index dfe242d..f874ec2 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,13 @@ Full course -stored in managed way. I use this repository to store the solutions of problems which I solve in C++ language . +Repository for storing implementations and solutions of Assignments and Test questions in C++. + +Full course -stored in managed way. + +I use this repository to store the solutions of problems which I solve in C++ language . + ------------------------------------------------------------------------------------------------------------------------------------------- Note: If you find any bugs in the code or have any doubts regarding the codes feel free to raise an issue or a PR. +Note: