From 115676803539f6a9ad569ab7f4998981473582cb Mon Sep 17 00:00:00 2001 From: NipulSingal62 <56539062+NipulSingal62@users.noreply.github.com> Date: Wed, 21 Oct 2020 18:11:29 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) 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: From fbfba9448551130047ebb344c5752b2789610002 Mon Sep 17 00:00:00 2001 From: NipulSingal62 <56539062+NipulSingal62@users.noreply.github.com> Date: Wed, 21 Oct 2020 18:12:34 +0530 Subject: [PATCH 2/2] Update Inbuilt_HashMap.cpp --- HashMaps/Inbuilt_HashMap.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;